function DisplayVideo(sVideoPath, sVideoTitle, sSize)
{
	// calculate center of screen
    var left = (screen.availWidth - 520) / 2;
    var top = (screen.availHeight - 520) / 2;
    var featureList = "status=no,menubar=no,toolbar=no,titlebar=no,resizable=no,scrollbars=no,width=520,height=520,top=" + top + ",left=" + left;

	// open the window
	window.open("/AboutSkatewave/Pages/VideoPopup.aspx?VideoPath=" + sVideoPath + "&VideoTitle=" + sVideoTitle + "&VideoSize=" + sSize, "ProductVideos", featureList);
}
function ResizeFrame()
{
	var h = window.screen.availHeight;
	
	var iFrame = document.getElementById('ExternalSite');
	iFrame.height = 1475;
}
function clickButton(e, buttonid)
{ 
	var bt = document.getElementById(buttonid); 
	if (typeof bt == 'object'){
		if(navigator.appName.indexOf("Netscape")>(-1)){ 
			if (e.keyCode == 13){
	            bt.click(); 
				return false; 
			} 
        } 
        if(navigator.appName.indexOf("Microsoft Internet Explorer")>(-1)){
			if (event.keyCode == 13){
				bt.click(); 
				return false; 
			} 
		} 
	}
}
function DisplayHomeFlash(FlashUrl)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="213" height="183" id="flash 6" VIEWASTEXT>\n');
	document.write('<PARAM NAME=movie VALUE="' + FlashUrl + '">\n');
	document.write('<PARAM NAME="menu" VALUE="false">\n');
	document.write('<PARAM NAME="quality" VALUE="high">\n');
	document.write('<PARAM NAME="bgcolor" VALUE="ffffff">\n');
	document.write('<EMBED src="' + FlashUrl + '" menu="false" quality="high" bgcolor="#ffffff" width="213" height="183" name="flash 6" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</OBJECT>\n');
}

function DisplayFlashVideo(FlashUrl, FlashWidth, FlashHeight)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + FlashWidth + '" height="' + FlashHeight + '" id="flash 6" VIEWASTEXT>\n');
	document.write('<PARAM NAME="Movie" VALUE="' + FlashUrl + '">\n');
	document.write('<PARAM NAME="Menu" VALUE="false">\n');
	document.write('<PARAM NAME="Quality" VALUE="High">\n');
	document.write('<PARAM NAME="bgcolor" VALUE="A91C22">\n');
	document.write('<EMBED src="' + FlashUrl + '" menu="false" quality="high" bgcolor="#A91C22" width="' + FlashWidth + '" height="' + FlashHeight + '" name="flash 6" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</OBJECT>\n');
}