function dump(pic,w,h,title)
{
	var winD
	winD = window.open("","Diamo","height="+h+",width="+w+",scrollbars=no");
	winD.document.write("<html><head><title>"+title+"</title></head><body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>");
	winD.document.write("<img src='/img/"+pic+"' border=0></body></html>");
}
function Order(Red)
{
	
window.open("http://www.diamo.se/?red="+Red,"Pagero","height=600,width=785,resizable=yes,menubar=no,scrollbars=auto,status=no,fullscreen=no");
}

function Fonster(URL,x,y)
	{
		window.open(URL,"Fonster","width="+x+",height="+y+",menubar=no,toolbar=no,resizable=yes,scrollbars=yes");
	}
	

function Oppna(spn)
{
	var element = "spn"+spn
	if(document.getElementById(element).style.display == "none")
	{
		document.getElementById(element).style.display = "";
	}
	else
	{
		document.getElementById(element).style.display = "none";
	}
}



//Begin 
timeout =0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=50,top=50,width=" + (WIDTH+10) + ",height=" + (HEIGHT+10);

text = "<html><head><META HTTP-EQUIV='imagetoolbar' CONTENT='no'><title>SVENSSONS VERANDA - Företagsresor till Frankrike</title></head><body bgcolor='#000000' onBlur='window.close();'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><a HREF='javascript: void(0)' onClick='window.close();'><img style='border-color: #FFFFFF;' src='" + URL + "' border='2'></a>";

if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Preview closes after " + timeout + " seconds.</font>";

text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}


