// JavaScript Document
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

<!-- 
function imagwindow(url, name)
{
  var w=400;  //width & height of hires popup
  var h=380;
 
	//pop up on the right
	var screenW = 640, screenH = 480;
	if (parseInt(navigator.appVersion)>3) {
	 screenW = screen.width;
	 screenH = screen.height;
	}

	x=screenW - w -20;
	y=10;
	var options='width=' + w + ',height=' + h +',status=0,toolbar=0,menubar=0,location=0,resizeable=0,scrollbars=no,left=' +x+',top=' +y;
	var win = window.open(url,name,options);
	win.focus();
}

function change_parent(URL)  {
	if (window.opener && !window.opener.closed)  {
		window.opener.location=URL;
		window.opener.focus();
	}
	else {
		window.open(URL, 'NEW');
	}
}


function clipwindow(url, name)
{
    var win = window.open(url, name,"status=0,toolbar=0,menubar=0,location=0,resizeable=1,scrollbars=yes,width=670,height=650,left = 300,top = 159");
	win.focus();
}

function clipwindow2(url, name)
{
    var win = window.open(url, name,"status=0,toolbar=0,menubar=0,location=0,resizeable=1,scrollbars=yes,width=478,height=300,left = 150,top = 159");
	win.focus();
}

// -->

function redirectOutput(myForm) {
var w = window.open('about:blank','Popup_Window','status=0,toolbar=0,menubar=0,location=0,resizeable=1,scrollbars=yes,width=968,height=668,left = 300,top = 159');
myForm.target = 'Popup_Window';
return true;
}