	
//-------------------------------------------------------------	
function OpenWindow(strURL, strName, intWidth, intHeight, intTop, intLeft)
	{
	if (intTop = - 1)
		{
		//Get values for centering the window
		var x = screen.availWidth;
		var y = screen.availHeight;
		if(x > intWidth)
			{
			intLeft = (x-intWidth)/2;
			}
		if(y > intHeight)
			{
			intTop = (y-intHeight)/2-30;
				
			}
		}
	
	mywin = window.open(strURL,strName,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,resizeable=no,height=" + intHeight + ",width=" + intWidth + ",left=" + intLeft + ",top=" + intTop + ",")
	mywin.focus();
	}
//-------------------------------------------------------------	

