<!--

function formHandler(form) {

var url = form.site.options[form.site.selectedIndex].value;

    if (bName == "Netscape") h=600;

    else h=600;

    w=800;

    nameW='flash'

	if (navigator.appVersion.indexOf('4') != -1) {

	// Vars for centering the new window on Version 4 Browsers

	x4 = screen.width/2 - (w/2);

	y4 = screen.height/2 - (h/2);

	window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=1,resizable=1,menubar=1,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');

	} else {

	window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=1,resizable=1,menubar=1,toolbar=0,status=0,location=0,directories=0,left=100,top=100');

	}

}

var bName = navigator.appName;

function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}
//-->
