function openWin(pageURL, sizeW, sizeH) {
	centerHeight = (screen.availHeight - sizeH)/2;
	centerWidth  = (screen.availWidth - sizeW)/2; 
	winParam = "top="+ centerHeight +", left="+ centerWidth +",  scrollbars, resizable, width=" + sizeW + ",height=" + sizeH;
	window.open(pageURL,'', winParam);
}
function openImage(imageURL,sizeW, sizeH) {
	centerWidth  = (screen.availWidth - sizeW)/2; 
	centerHeight = (screen.availHeight - sizeH)/2;
	winParam = "top="+ centerHeight +", left="+ centerWidth +", scrollbars, resizable, width=" + sizeW + ",height=" + sizeH;
	pageOpen = open('', 'Image', winParam);
	pageOpen.document.write('<html><Head><Title>IMAGES</Title></head><body style="background-color: black; background-image: url(\''+imageURL+'\'); background-repeat: no-repeat; background-position: center;"></html>');
}
