function validate() {
	if (document.form1.pass.value != 'media'){
		alert("You have entered an invalid password.");
		return false;
	}
	openWindow('search.htm');
	return true;
}

function openWindow(file,width,height) {
window.open(file,'Recommend','width='+width+',height='+height+',location=yes,menubar=yes,scrollbars=yes,toolbar=yes,directories=yes,status=yes,resizable=yes');
}
