

function openContest(){
	newWin=window.open("http://www.melted.dk/diverse/contest.php",
			"contest","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=400,height=355,left=20,top=20");
	newWin.focus();
}


function openConcerts(){
	newWin=window.open("http://www.melted.dk/diverse/concerts.php",
			"contest","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=400,height=355,left=20,top=20");
	newWin.focus();
}

function openContact(){
	newWin=window.open("http://www.melted.dk/diverse/contact.php",
			"contact","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=400,height=355,left=20,top=20");
	newWin.focus();
}

function openGallery(){
	l=(screen.width/2)-175;
	t=(screen.height/2)-250;
	newWin=window.open("../html/gallery.html",
			"gallery","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=350,height=480,left="+l+",top="+t+"");
	newWin.focus();
}	


function openPop(){
	l=(screen.width/2)-300;
	t=(screen.height/2)-150;
	newWin=window.open("../html/popup.html",
			"popup","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=500,height=300,left="+l+",top="+t+"");
	newWin.focus();
}	


function openWall(width,height){
	w=screen.width-10;
	h=screen.height-60;

	if (screen.width==800){
		newWin=window.open("../html/wall1.html","name","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",left=0,top=0");
		newWin.focus();
	}

	if (screen.width==1024){
		newWin=window.open("../html/wall2.html","name","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",left=0,top=0");
		newWin.focus();
	} else {
		newWin=window.open("../html/wall3.html","name","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",left=0,top=0");
		newWin.focus();
	}
}


