// Popup-window

function PrintWindow(url)
{
	var win = window.open(url, 'print', 'resizable=no,menubar=no,scrollbars=yes,location=no,toolbar=yes,width=640,height=600,directories=no,top=80,left=70');
}

function SMSWindow(SMSID, EVENTNAME, CHANNELNAME, START)
{
	var w = 300/3, h = 200/3, leftpx = w/2, toppx = h/2;

	if (window.screen) {
	    w = Math.floor(screen.availWidth/3);
	    h = Math.floor(screen.availHeight/3);
	    leftpx = Math.floor((screen.availWidth-w)/2);
	    toppx = Math.floor((screen.availHeight-h)/2);
	}

	var win = window.open('../sms/?chrSMSID='+SMSID+'&chrEventName='+EVENTNAME+'&chrChannelName='+CHANNELNAME+'&dtmStart='+START, 'sms', 'resizable=no,menubar=no,scrollbars=no,location=no,toolbar=no,width=300,height=200,directories=no,top='+toppx+',left='+leftpx);
}

function PopUpWindow(url, w, h)
{
	window.open(url, null, 'width='+w+', height='+h);
}