/*
	Copyright (C) 2002 Masque Graphics.  All Rights Reserved.
*/

// browser initialisation
initBrowser();

function initBrowser()
{
dom = (document.getElementById)? true:false;
ie4 = (document.all && !dom)? true:false;
ie5 = (dom && navigator.appVersion.indexOf("MSIE 5")>-1)? true:false;
ns4 = (document.layers)? true:false;
ns6 = (document.createRange)? true:false;
opera = (navigator.userAgent.indexOf("Opera")>-1)? true:false;
}

// removing the border when clicking on a link with ie
function unfocusImageLink() 
{
for (a in document.links) document.links[a].onfocus=document.links[a].blur;
} 

if (ie4 || ie5) document.onmousedown = unfocusImageLink;



function popup(name, file, w, h)
{
html_file="popup.php?name="+name+"&file="+file;
window.open(html_file,"popup","toolbar=no,status=no,scrollbars=no,resizeable=no,width="+w+",height="+h);
}

function popup2(n)
{
file="popup"+n+".html";
window.open(file,'popup','toolbar=no,status=no,scrollbars=no,resizeable=no,width=400,height=400');
}

