	<!-- // begin hiding
 
var value = null;
function OpenWin(value,wval,hval) 
	{
	window.open(value,'popup','resizable=yes,width=' + wval + ',height=' + hval + ',status=no,location=no,toolbar=no,menubar=no,scrollbars=yes');
	}		

function confirmSubmit()
{
var agree=confirm("Are you sure you wish to continue?");
if (agree)
	return true ;
else
	return false ;
}

function ResizeToFit()
{
var imgWidth
var imgHeight

imgWidth = document.imgAlt.width + 100
imgHeight = document.imgAlt.height + 80

window.resizeTo(imgWidth, imgHeight)
}

function imgswap(primary, imgname1, secondary, imgname2)
{
 eval("document." + primary + ".src = '" + imgname1 + "'");
 eval("document." + secondary + ".src = '" + imgname2 + "'");	
}
defaultStatus = "GJK";

//if (window == top) top.location.href = "default.htm";

function changeColors(subcatcell)
{
	subcatcell.style.backgroundColor="#CFCBC2"
}
function restoreColors(subcatcell)
{
	subcatcell.style.backgroundColor=""
}


var clickmessage="Högerklick ej möjlig på bilder!"
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}
function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}
if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()



	// end hiding -->