// JavaScript Document
var myPage;

function openWin(myWin, intWidth, intHeight)
{
	myPage = open(myWin, "displayWindow", "width=" + intWidth + ",height=" + intHeight + ",scrollbars=no,resizable=no,status=no,toolbar=no,menubar=no");
	if ((!myPage || myPage.closed) == false)
	{
	      	if(myPage.focus)
	      	{
	      		myPage.focus();
	      	}
	}
}

function openWinResizable(myWin, intWidth, intHeight)
{
	myPage = open(myWin, "displayWindow", "width=" + intWidth + ",height=" + intHeight + ",scrollbars=no,resizable=yes,status=no,toolbar=no,menubar=no");
	if ((!myPage || myPage.closed) == false)
	{
	      	if(myPage.focus)
	      	{
	      		myPage.focus();
	      	}
	}
}

function openNews(myWin, intWidth, intHeight)
{
	myPage = open(myWin, "displayWindow", "width=" + intWidth + ",height=" + intHeight + ",scrollbars=yes,resizable=yes,status=no,toolbar=no,menubar=no");
	if ((!myPage || myPage.closed) == false)
	{
	      	if(myPage.focus)
	      	{
	      		myPage.focus();
	      	}
	}
}