$(document).ready(function()
{
	$(".tab_specs").click(function() {
		//function showWindow(galID) {
			if($.browser.opera) {
				body_height = document.body.scrollHeight + 50;
			}else{
				body_height = $(document).height();
			};
			document.getElementById("popWindow").style.display = "block";
			document.getElementById("cover").style.display = "block";
			if (body_height < 968) {
				document.getElementById("cover").style.height = "1044px";
			} else {
				document.getElementById("cover").style.height = body_height + "px";
			}
			/*
			document.getElementById("popInfo").innerHTML = "<br /><br /><center>Loading...</center><br /><br />";
			$.post(var_website_url+"/Product_Specs.cfm",
			
				function(data){
					if (data == 0) {
						// do nothing
						alert("error");
					} else {
						$("#popInfo").html(data);
					}
				}
			);
			*/
		//}
		});
});
function hideWindow() {
	document.getElementById("popWindow").style.display = "none";
    document.getElementById("cover").style.display = "none";
}
