
function popupVert(url){
	
	newwindow=window.open('','hej','height=330,width=430');
	newwindow.moveTo((screen.width-420)/2, (screen.height-310)/2);
  	newwindow.focus();
  	
  	var words = url.split('/');
	var tmp = newwindow.document;
	tmp.write('<html><head><title>');
	tmp.write(words[words.length-1]);
	tmp.write('</title>');
	tmp.write('</head><body bgcolor="#000000"><img src="');
	tmp.write(url);
	tmp.write('"</img>');
	tmp.write('</body></html>');
	tmp.close();
}

function popupHori(url){
	
	newwindow=window.open('','hej','height=430,width=330');
	newwindow.moveTo((screen.width-420)/2, (screen.height-310)/2);
  	newwindow.focus();
  	
  	var words = url.split('/');
	var tmp = newwindow.document;
	tmp.write('<html><head><title>');
	tmp.write(words[words.length-1]);
	tmp.write('</title>');
	tmp.write('</head><body bgcolor="#000000"><img src="');
	tmp.write(url);
	tmp.write('"</img>');
	tmp.write('</body></html>');
	tmp.close();
}