
function submitForm(form) {
	if(form.uri.value == "") {
		return false;
	} else {
		form.submit();
		return true;
	}
}

function OpenNewWindow(movieURL, movieWidth, movieHeight) {
	var width = movieWidth + 20;
	var height = movieHeight + 30;	
	var winLeft = (screen.width - width) / 2;
	var winTop = (screen.height - height) / 2;
	var windowProperties = 'height='+height+',width='+width+',top='+winTop+',left='+winLeft+',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,fullscreen=no';	
	var newWindow = window.open('', '', windowProperties);
	var doc = newWindow.document;
	doc.writeln('<html>');
	doc.writeln('<head>');
	doc.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	doc.writeln('<title>Alimak Hek</title>');
	doc.writeln('</head>');
	doc.writeln('<body bgcolor="black">');
	doc.writeln('<center>');	
	doc.writeln('<embed src="'+movieURL+'" width="'+movieWidth+'" height="'+movieHeight+'" autostart="true" loop="false">');
	doc.writeln('</center>');
	doc.writeln('</body>');
	doc.writeln('</html>');	
	
	if(window.focus) {
		newWindow.focus();
	}
}
