﻿
function ShowDemo()
{
	OpenStandardWindow("/Demo/", "Demo", 975, 710);
}

function OpenStandardWindow(url, name, width, height, showSrollBar)
{
    var scrollBarValue = "0";
    if (showSrollBar)
        scrollBarValue = "1";

	var params = "width=" + width
				  + ",height=" + height
				  + ",left=" + ((screen.width / 2) - (width / 2))
				  + ",top=" + ((screen.height / 2) - (height / 2))
				  + ",status=1"
				  + ",toolbar=0"
				  + ",location=0"
				  + ",menubar=0"
				  + ",directories=0"
				  + ",resizable=1"
				  + ",scrollbars=" + scrollBarValue
				  + ",copyhistory=0";

	var newWindow = window.open(url, name, params);

	newWindow.focus();
}