// JavaScript Document

function revT(x){
var msgBox = document.getElementById('popup');
var bodyText = document.getElementById('mainText');
	if(x == 0){
		msgBox.style.visibility = 'hidden';
		//document.body.style.overflow = 'hidden';
		bodyText.className = "";
		msgBox.className = "fade";
		//parentRefresh();
	}else if(x == 1){
		msgBox.style.visibility = 'visible';
		//document.body.style.overflow = 'hidden';
		bodyText.className = "fade";
		msgBox.className = "fade";
	}
}

function picReveal(src){

	var contentBox = document.getElementById('ict');
	contentBox.innerHTML = "<center><img src='"+src+"' onMouseUp='revT(0);' align='middle' alt='Click to Close'></center>";
	revT(1);
}

function picReveal1(src, dllink){

	var contentBox = document.getElementById('ict');
	contentBox.innerHTML = "<center><img src='"+src+"' onMouseUp='revT(0);' align='middle' alt='Click to Close'><br/><br/><a href='"+dllink+"' target='poster' class='whiteNormal'>Click here to download the Product Details</a></center>";
	revT(1);
}



function offerReveal(){
	var contentBox = document.getElementById('ict');
	contentBox.innerHTML = '<table width="500" border="0" cellpadding="0" cellspacing="0" bgcolor="#730870"><tr><td width="500" height="21" valign="top" background="images/bg_detail.gif"></td></tr><tr><td height="139" valign="top"><iframe style="background-color:#FFFFFF" src="offer_details.php" width="500" height="400" border="0"></iframe></td></tr><tr><td height="35" align="center" valign="middle" bgcolor="#730A71" onmouseup="revT(0);"><a style="color: #FFFFFF; font-weight: bold;" onmouseup="revT(0)">CLOSE</a></td></tr><tr><td height="16" valign="top" background="images/bg_detail.gif"></tr></table>';
	revT(1);
}
