var PopURL,PopNAME,PopWidth,PopHeight;

function POPUP(PopURL,PopName,PopWidth,PopHeight){
	var PopDetail = "toolbar=yes,location=no,directories=no,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=" + PopWidth + ",height=" + PopHeight;
	PopWin = window.open(PopURL,PopName,PopDetail);
	PopWin.focus();
}
