/****************************************************************************************************************************************************
	Pop-up
****************************************************************************************************************************************************/
function popup(page, w, h){
	
	var cW=(screen.width - w)/2;
	var cY=(screen.height - h)/2;

	pp = window.open(page,'window','top='+cY+',left='+cW+',width='+w+',height='+h+',scrollbars=1, status=1');
	if (window.focus) {
		pp.focus()
	}//end if
}//end function

