function pop(type){
	var credits = "credits.html";
	var awards = "awards.html";
	var preview = "preview.html";
	if (type == 'credits'){
				var thefilm_win = window.open(credits,'thefilm_win','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=437,height=437');
				thefilm_win.focus();
	} else if (type == 'awards') {
				var thefilm_win = window.open(awards,'thefilm_win','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=437,height=437');
				thefilm_win.focus();
	} else if (type == 'preview') {
				var preview_win = window.open(preview,'preview_win','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=437,height=437');
				preview_win.focus();
	}
	return false;
}

