<!--

var popWin  
// because of the closepopWin()
//function it has to be declare global

function popUp800(page)
// This opens a window 800 pixels wide
{	popWin = so=eval("window.open('"+page+"','so','toolbar=0,scrollbars=1,location=0,status=0,menubars=0,resizable=1,width=800,height=600')");
popWin.focus();
}

function popUp600(page)
// This opens a window 600 pixels wide
{	popWin = so=eval("window.open('"+page+"','so','toolbar=0,scrollbars=1,location=0,status=0,menubars=0,resizable=1,width=620,height=465')");
popWin.focus();
}

function popUp420(page)
// This opens a window 420 pixels wide
{	popWin = so=eval("window.open('"+page+"','so','toolbar=0,scrollbars=1,location=0,status=0,menubars=0,resizable=1,width=420,height=420')");
popWin.focus();
}

function popUp250(page)
// This opens a window 250 pixels wide
{	popWin = so=eval("window.open('"+page+"','so','toolbar=0,scrollbars=1,location=0,status=0,menubars=0,resizable=1,width=250,height=300')");
popWin.focus();
}

function closepopWin()
//This function will close the popup window
{ popWin.close()
}

// Add popWin in the head of the document to make it automatic
// Pop-up links would look like this
// <a href="javascript:popUp600('special.xml');">Special</a>
// Close Pop-up links would look like this
// <a href="javascript:closepopWin()">Close Popup Window</a>

// -->