function newWin(link,w,h,s,r) {
  var winFeatures = 'width=' + w + ',height=' + h + ',scrollbars=' + s + ',resizable=' + r + ',status=yes,name=yes';
   var bookWindow = window.open(link,"",winFeatures);

}

function Pop() { 

if (window.event) {
var oEvent=this.window.event.button;
} else {var oCall=Pop.caller.arguments[0]; var oEvent=oCall.button;} 

	if (oEvent!==2)   {

	var flash = "flash"
if (document.getElementById) 
{
document.getElementById(flash).style.visibility="visible";
setTimeout(function() { document.getElementById(flash).style.visibility="hidden"; }, 8000);

} 
else {
	
	if (document.layers) 
{
var oFlash = document.flash.visibility = "visible";
setTimeout(function() { document.flash.visibility='hidden'; }, 8000);
}
else {

document.all.flash.visibility = "visible";
setTimeout(function() { document.all.flash.visibility='hidden'; }, 8000);

}

}

	}
}

