function imagePopUp(img) {
	html = '<html><head><title>Enlarged Image</title>' 
	     + '</head><body style="margin: 0px 0; text-align:center;">' 
		 + '<img src="'+img+'" border="0" ' 
		 + 'onload="window.resizeTo(document.images[0].width+20,document.images[0].height+80)" >' 
		 + '</body></html>';
	popup=window.open('','image','height=100,width=100,toolbar=0,location=0,directories=0,menuBar=0,resizable=1');
	popup.document.open();
	popup.document.write(html);
	popup.focus();
	//popup.close();
}

var newwindow;
function openWindow(url, height, width, scroll)
{
	newwindow=window.open(url,'name','height='+height+',width='+width+',scrollbars='+scroll+',resizable=yes');
	if (window.focus) {newwindow.focus()}
}

