// JavaScript Document
 
function OpenImageWindow(myImageURL) { 
	//window.open("image.aspx?"+ myImageURL, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
	window.open('image.aspx?'+ myImageURL,'myImage','toolbar=0,location=0,status=0,resizable=1,left=20,top=20,HEIGHT=200,WIDTH=200');
} 
