function viewImg(index){
  document.getElementById("viewmag").src = imgPathArray[index]
  document.getElementById("viewmag").filters.alpha.opacity=10
  clean()
}

function makeclean(){
   if (document.getElementById('viewmag').filters.alpha.opacity<100)
	 document.getElementById('viewmag').filters.alpha.opacity+=5
   else if (window.interval){
	 clearInterval(interval)
   }
}

function clean(){
  interval=setInterval("makeclean(viewmag)",130)
}

function viewImgLinkAdvertise(id,thumb,w,h){
	var ele = document.getElementById("hrefid");
	var hreflink = "";

	 hreflink   = "javascript:popupwindowh('advertise_detail.php?id="+id+"','"+w+"','"+h+"')";
	 ele.href = hreflink;

	document.getElementById("viewmag").alt = "View this";
	document.getElementById("viewmag").src = thumb;
	document.getElementById("viewmag").filters.alpha.opacity=10;
	clean();
}

function viewImgLinkEvents(id,thumb,w,h){
	var ele = document.getElementById("hrefid");
	var hreflink = "";

	 hreflink   = "javascript:popupwindowh('events_detail.php?id="+id+"','"+w+"','"+h+"')";
	 ele.href = hreflink;

	document.getElementById("viewmag").alt = "View this";
	document.getElementById("viewmag").src = thumb;
	document.getElementById("viewmag").filters.alpha.opacity=10;
	clean();
}

function viewImgLinkProduct(id,thumb,w,h){
	var ele = document.getElementById("hrefid");
	var hreflink = "";

	 hreflink   = "javascript:popupwindowh('product_detail.php?id="+id+"','"+w+"','"+h+"')";
	 ele.href = hreflink;

	document.getElementById("viewmag").alt = "View this";
	document.getElementById("viewmag").src = thumb;
	document.getElementById("viewmag").filters.alpha.opacity=10;
	clean();
}

function viewImgLinkHome(thumb){
	document.getElementById("viewmag").alt = "View this";
	document.getElementById("viewmag").src = thumb;
	document.getElementById("viewmag").filters.alpha.opacity=10;
}

function foggy(viewid){
	//clearInterval(interval)
	document.getElementById(viewid).filters.alpha.opacity=70
}

function light(viewid){
	document.getElementById(viewid).filters.alpha.opacity=100
}

function popupwindowh(url, width, height){
	 window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
}

// Disable Save Image
var message="Cannot download images";

function clickIE4(){
	if (event.button==2){
		alert(message);
		return false;
	}
}

function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}

if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}else if (document.all&&!document.getElementById){
	document.onmousedown=clickIE4;
}
document.oncontextmenu= new Function("alert(message);return false")

