function UpdateDetail(img, lnk, detail)
{
	var objImg = YAHOO.util.Dom.get("imgDisplayImage");
	var objLnk1 = YAHOO.util.Dom.get("lnkImage1");
	var objLnk2 = YAHOO.util.Dom.get("lnkImage2");
	var objFrame  = YAHOO.util.Dom.get("ifrmDetail");
	
	if (objImg) objImg.src = img;
	if (objLnk1) objLnk1.href = lnk;
	if (objLnk2) objLnk2.href = lnk;
	if (objFrame) objFrame.src = detail;
	
	return false;
}


function PopupRadio(url,name)
{
	// Define the size of your remote window in pixels with "width" and "height." 
	remote = window.open(url,name,"width=500,height=300,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");

	// URL for site'/terms/terms.htm.
	remote.location.href = url;

	if (remote.opener == null)
		remote.opener = window; 
}


function PopupTV(url,name)
{
	// Define the size of your remote window in pixels with "width" and "height." 
	remote = window.open(url,name,"width=600,height=460,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");

	// URL for site'/terms/terms.htm.
	remote.location.href = url;

	if (remote.opener == null)
		remote.opener = window; 
}