// JavaScript Document
var fpvwin;
function openWin(sURL, nWidth, nHeight) {
	//alert(sURL);
	//return;
	nWidth = nWidth == null ? 300 : nWidth;
	nHeight = nHeight == null ? 300 : nHeight;
	var fpvwin = window.open(sURL);
}
function closeWin() {
	window.close();
}
function gotoLocation(sURL) {
	window.location = sURL;
}
//window.onload = loadFlashView;
function buttonOver()
{
 var obj = window.event.srcElement;
 obj.runtimeStyle.cssText = "background-color:#FFFFFF";
// obj.className="Hover";
}
function buttonOut()
{
 var obj = window.event.srcElement;
 window.setTimeout(function(){obj.runtimeStyle.cssText = "";},300);
}

