// JavaScript Document

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=300,width=400');
	if (window.focus) {newwindow.focus()}
}

function poptastic2(url)
{
	newwindow=window.open(url,'name','height=600,width=570');
	if (window.focus) {newwindow.focus()}
}
function poponload(strurl)
{

testwindow= window.open (strurl, "mywindow","location=1,status=1,scrollbars=1,width=798,height=597,toolbar=no, menubar=no");
}

function poptasticPrint(url)
{
	newwindow=window.open(url,'name', 'width=600,height=445');
	if (window.focus) {newwindow.focus()}
}
// Popup window function
	function newWindow(url) {
popupWindow = window.open(url,'popUpWindow','height=500,width=500,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no, status=yes');
	}
	
	
	// to print the screen
	function printPage(){
	 window.print();
	 }
	 
	 function pgeload()
	  {
		  document.form1.submit();

		  }

		function FlashWin(url) {
popupWindow = window.open(url,'popUpWindow','height=678px,width=520px,left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no, status=yes');
if (window.focus) {newwindow.focus()}
	}