 var child_window;
 
 function OpenModelPopup(Link)
   { 
   
        document.getElementById ('MaskedDiv').style.display='';
        document.getElementById ('MaskedDiv').style.visibility='visible';
        document.getElementById ('MaskedDiv').style.top='0px';
        document.getElementById ('MaskedDiv').style.left='0px';
        document.getElementById ('MaskedDiv').style.width=  document.documentElement.clientWidth + 'px';
        document.getElementById ('MaskedDiv').style.height= document.documentElement.clientHeight+ 'px';    	
    	child_window = window.open(Link, "", "scrollbars=no,menubar=no,toolbar=no");             	    	
    }
    
    function handle_onFocus() 
    {
	    if(child_window)
	    {
	        child_window.focus();
	    }
    }

    
function printerFriendly(){
//    var win, url;
//	url = '/modals/EDU_PrinterFriendly.asp';
//	if (win && !win.closed)
//		win.location.replace(url);
//	else
//    	win = window.open(url,"Print","width=800,height=600,resizable=yes,center=yes,scrollbars=yes,status=0,menubar=no,titlebar=no,toolbar=no");
//	win.focus();
window.print();
}


function printWindow(){
window.print();
}
