// JavaScript Document
function newWindow(myPage, pageNme, w, h){
	openWin = window.open(myPage, pageNme, 'width='+w+', height='+h);
}

function popUppage(picID){

	popUpWindow = window.open("pop1.htm?id=" + picID,"popUp","resizable=no,toolbar=no,menubar=no,statusbar=no,scrollbars=yes,width=450,height=500");

}
