// JavaScript Open New Window



	var newwindow = ''

	function view(url) {

	if (newwindow.location && !newwindow.closed) {

		newwindow.location.href = url; 

		newwindow.focus(); } 

	else { 

		newwindow=window.open(url,'htmlname','width=404,height=316,resizable=1');} 

	}



	function tidy() {

	if (newwindow.location && !newwindow.closed) { 

	   newwindow.close(); } 

	}







function view(url) {



if (newwindow.location && !newwindow.closed) {



    newwindow.location.href = url; 



    newwindow.focus(); } 



else { 



    newwindow=window.open(url,'htmlname',' left=0,top=0,width=518,height=670,resizable=0,scrollbars=yes');} 



}



function regpass(url) {



if (newwindow.location && !newwindow.closed) {



    newwindow.location.href = url; 



    newwindow.focus(); } 



else { 



    newwindow=window.open(url,'htmlname',' left=200,top=100,width=450,height=250,resizable=0,scrollbars=yes');} 



}


