
	<!--
	
      function focusWindow(winwidth, winheight) {
	  	var xposi = 0, yposi = 0;				// default values
		//var winwidth = 650, winheight= 200;		// default values
		if (document.all) var xMax = screen.width, yMax = screen.height;
		else if (document.layers) var xMax = window.outerWidth, yMax = window.outerHeight;
		xposi = xMax/2 - (winwidth/2)
		yposi = yMax/2 - (winheight/2)	
        w = window.open("", "paulandyoungron_popup","screenX="+xposi+",screenY="+yposi+",top="+yposi+",left="+xposi+",width="+winwidth+",height="+winheight+",status=yes, location=no,scrolling=yes, scrollbars=yes, toolbar=no");
        w.focus();
      }
      
      function openWindow(winwidth, winheight, winname) {
	  	var xposi = 0, yposi = 0;				// default values
		//var winwidth = 650, winheight= 200;		// default values
		if (document.all) var xMax = screen.width, yMax = screen.height;
		else if (document.layers) var xMax = window.outerWidth, yMax = window.outerHeight;
		xposi = xMax/2 - (winwidth/2)
		yposi = yMax/2 - (winheight/2)	
        w = window.open("", winname,"screenX="+xposi+",screenY="+yposi+",top="+yposi+",left="+xposi+",width="+winwidth+",height="+winheight+",status=yes, location=no,scrolling=yes, scrollbars=yes, toolbar=no");
        w.focus();
      }
    
    function embed(url, width, height){
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="movie" value="'+url+'"><param name="quality" value="high"><param name="wmode" value="transparent" /><embed src="'+url+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed></object>');
}

function WebForm_FireDefaultButton(event, target) {
        if (event.keyCode == 13 && !(event.srcElement && (event.srcElement.tagName.toLowerCase() == "textarea"))) {
        var defaultButton;
        if (__nonMSDOMBrowser) {
            defaultButton = document.getElementById(target);
        }
        else {
            defaultButton = document.all[target];
        }
        if (defaultButton && typeof(defaultButton.click) != "undefined") {
            defaultButton.click();
            event.cancelBubble = true;
            if (event.stopPropagation) event.stopPropagation();
            return false;
        }
    }
    return true;
}
	//-->