function popUpRespect(url){
		theProps = "resizable=no,location=no,toolbar=no,width=680,height=480,left=10,top=20,scrollbars=no,status=no,menubar=no"
		RespectNewWindow = window.open(url,"RespectNewWindow",theProps);
	setTimeout("RespectNewWindow.focus()", 1000);
}

function popUpNews(url, w, h){
		theProps = "resizable=no,location=no,toolbar=no,width="+w+",height="+h+",left=50,top=60,scrollbars=no,status=no,menubar=no"
		NewsNewWindow = window.open(url,"NewsNewWindow",theProps);
	setTimeout("NewsNewWindow.focus()", 1000);
}

function popUpPicDetail(url){
		theProps = "resizable=no,location=no,toolbar=no,width=320,height=320,left=20,top=30,scrollbars=no,status=no,menubar=no"
		picDetailNewWindow = window.open(url,"picDetailNewWindow",theProps);
	setTimeout("picDetailNewWindow.focus()", 1000);
}

function popUpProjDetail(url,w,h){
		theProps = "resizable=no,location=no,toolbar=no,width="+w+",height="+h+",left=30,top=40,scrollbars=no,status=no,menubar=no"
		projDetailNewWindow = window.open(url,"projDetailNewWindow",theProps);
	setTimeout("projDetailNewWindow.focus()", 1000);
}

function popUpGuestbook(url){
		theProps = "resizable=yes,location=no,toolbar=no,width=320,height=320,left=40,top=50,scrollbars=yes,status=no,menubar=no"
		guestbookNewWindow = window.open(url,"guestbookNewWindow",theProps);
	setTimeout("guestbookNewWindow.focus()", 1000);
}

function resizePopUp() {
	window.resizeTo(document.pic.width+60,document.pic.height+320)
}

