/****************************************************************************************************************************************************
	Pop-up
****************************************************************************************************************************************************/
function popup(page, w, h, p){
	/*var w = 400;
	var h = 400;*/
	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();
		if(p!= undefined | p!= null){
			pp.print()
		};
	}//end if
}//end function


