
function openNewWindow(URLtoOpen,windowName, windowFeatures) { 
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}

function imageWinOpen(imageurl, imagetarget, imagew, imageh) {
	imagewin = window.open(imageurl, imagetarget, "scrollbars=yes,resizable=yes,width="+imagew+",height="+imageh);
	imagewin.focus();
	imagewin.moveTo(screen.availWidth - imagew - 10, 0);
}



