var loaded = false;

function showPopup(name, description, image, width)
{
	if(!loaded) return;
	
	height = 320;
	
	if(width == 320)
	{
		width = 267;
		height = 400;
	}
	
	var c = (this.gameName != "") ? "<br /><div class='gameName'>" + unescape(name) + "</div><div class='gameDesc'>" + unescape(description) + "</div><br />" : "";
	jQuery("body").append("<div id='preview'><div id='gameWrapper'>"+ c +"<img src='"+ image +"' alt='"+unescape(name)+"' /></div></div>");
	
	var pos = jQuery("#adsback").position();
	var ads_height = jQuery("#adsback").height() + pos.top;
									 
	jQuery("#preview")
		.css("top", ads_height + "px")
		.css("width",100 + "%")
		.fadeIn("fast");
		
	jQuery("#gameWrapper")
		.css("width",width + "px")
		.fadeIn("fast");
		
	jQuery("#gameWrapper img")
		.css("width",width + "px")
		.css("height",height + "px")
}

function removePopup()
{
	jQuery("#preview").remove();
}

// starting the script on page load
jQuery(document).ready(function(){
	loaded = true;
});