function OpenWindow(thisURL) {
	var myWin = window.open(thisURL,"pics",
     "location=no,toolbar=no,scrollbars=yes,resizable=no,width=390,height=530");
}	 
function OpenWindow2(thisURL) {
	var myWin = window.open(thisURL,"pics",
     "location=no,toolbar=no,scrollbars=no,resizable=no,width=300,height=390");
}	
 function OpenWindow3(thisURL) {
	var myWin = window.open(thisURL,"pics",
     "location=no,toolbar=no,scrollbars=no,resizable=no,width=390,height=300");
}	
function OpenWindow4(thisURL) {
	var myWin = window.open(thisURL,"pics",
     "location=no,toolbar=no,scrollbars=no,resizable=no,top=20,width=315,height=460");
}
function OpenWindow5(thisURL,remotetitle) {
	var myWin = window.open(thisURL,"pics",
     "location=no,toolbar=no,scrollbars=no,resizable=no,top=20,width=347,height=447");
myWin.document.write("<TITLE>"+remotetitle+"</TITLE>");
myWin.document.write("<CENTER><IMG SRC='"+thisURL+"'></CENTER>");
myWin.document.close();
}