
function OpenNewWindow(URL,name,width,height)
{
	var winOptions;
	var popUpWindow;
	//height=400 width=600

 	popUpWindow = open(URL, name, "width="+width+", height="+height+", top=80, left=80, scrollbars=yes, toolbar=no, status=no, location=no");
 	popUpWindow.focus();
 }

function isBack() {
	return (1);
}
function isForward() {
	return (1);
}