<!-- Begin

var w;
var h;
function NewWindow(mypage, size) {
	if (size == 1){
		w = 350;
		h = 150;}
	else if (size == 2){
		w = 575;
		h = 425;}
	else if (size == 3){
		w = 800;
		h = 600;}

var winl = (screen.width - w) / 10;
var wint = (screen.height - h) / 10;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',resizable,scrollbars'
win = window.open(mypage, 'myname'+size, winprops);
win.focus()
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


myPopup = '';

function corpPopup(url) {
    myPopup = window.open(url,'popupWindow','width=640,height=480,scrollbars=yes,toolbar=yes,resizable=yes');
    if (!myPopup.opener)
         myPopup.opener = self; 
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//  End -->
