function openBigPic(file,width,height) {
	
	var openBigPicWindow;
	
	openBigPicWindow = window.open(file,'bigPic','width='+(width+50)+', height='+(height+50)+', resizable=yes, toolbar=no, status=no, directories=no, menubar=no, location=no, scrollbars');
	//openBigPicWindow.reload();
	openBigPicWindow.resizeTo(width+50, height+50);
	/*
	openBigPicWindow.document.close();
	openBigPicWindow.document.open();
	
	var myDiv = document.createElement("div");
	var d
	openBigPicWindow.document.
	//write ('<div style="margin:10 0 0 10;"><img src="'+file+'" alt="" width="'+(width)+'" height="'+(height)+'" style="border:1px #bfbfbf solid;" \/><\/div>');
	//openBigPicWindow.
	//openBigPicWindow.reload();
	*/
	openBigPicWindow.focus();
	
	
	
	
	
}
