﻿// JScript File
//Used in:
//  Restricted/BasketPage.aspx
//  Restricted/UserCompaniesPage.aspx
//  Restricted/UserHistoryCompaniesPage.aspx
//  Restricted/UsersOrdersPage.aspx
//  SearchPage.aspx

var popupWin = null;
    
function PopUpPage(url,width,height)
{
	var left = screen.availWidth/2 - width/2;
	var top = screen.availHeight/2 - height/2;
	
	var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=no" +
	",left=" + left + ",top=" + top + ",width=" + width + ",height=" + height;
	
	if( !popupWin || popupWin.closed )
	{
        popupWin = window.open(url,"Popup",windowprops);
    } 
    else 
        popupWin.focus();
}

function PrintPage(page)
{
    //navigator.userAgent.indexOf('Opera') && navigator.appName.indexOf('Netscape')
//		    if(navigator.appName.indexOf('Internet Explorer') != -1)
//		    {
//		        window.print(page);
//		    }
//		    else
//		    {
        var props = "menubar=yes,toolbar=yes,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no";
        window.open(page, "druk", props);
//		    }
}