

function PrintPageHandler(Entity, ObjectId)
{		
 	var sWiHe = 'width=' + (screen.availWidth - 20);
	sWiHe += ',screenX=0,screenY=0,left=0,top=0';
	sWiHe += ',menubar=1,toolbar=1,status=0';
	sWiHe += ',scrollbars=1,resizable=1';

	var url = 'print.aspx?Refresher=' + Math.floor(Math.random()* 10000);

    if(Entity != null && ObjectId != null)
        if(Entity > 0 && ObjectId > 0)
            url += "&Caller=" + Entity + "&ObjectId=" + ObjectId;
	window.open(url, 'ekwebprint', sWiHe);
}
