function openTTV(ttvPage,kanal,type) {

switch (kanal) {
	case "dr2" :
		var channelSelect = "2";
		break
	default :
		var channelSelect = "1";
}
switch (type) {
	case "text" :
		var typeSelect = "x";
		break
	default :
		var typeSelect = "v";
}

	ttvWin = window.open("", "ttvWindow", "width=500,height=488,status=no,scrollbars=no,resizable=yes");

	ttvWin.document.open();

	ttvWin.document.write("<html><head><title>DR tekst-tv<\/title><\/head>");
	ttvWin.document.write("<frameset framespacing=\"0\" border=\"0\" cols=\"180,*\" frameborder=\"0\">");
	ttvWin.document.write("<frame name=\"venstre\" src=\"http:\/\/www.dr.dk\/nav\/tekstttv\/navigation.htm\" ");
	ttvWin.document.write("marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" noresize>");
	ttvWin.document.write("<frame name=\"hoejre\" src=\"http:\/\/www.dr.dk\/cgi-bin\/ftt"+typeSelect+channelSelect+".exe\/");
	ttvWin.document.write(ttvPage);
	ttvWin.document.write("\"  marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" noresize>");
	ttvWin.document.write("<noframes><body><p>Denne side bruger rammer, ");
	ttvWin.document.write("<a href=\"http:\/\/www.dr.dk\/cgi-bin\/fttx"+channelSelect+".exe\/"+ttvPage+"\">klik her for en bedre version "); 
	ttvWin.document.write("af tekst-tv<\/a>.<\/p><\/body><\/noframes><\/frameset>");

	ttvWin.document.close();
	ttvWin.focus();
}

function tekstTV(ttvForm) {
 var min= 3;
 var max= 899;
 	if (ttvForm.request.value.length < min || ttvForm.request.value > max || isNaN(ttvForm.request.value)) {
		alert("Tekst-TV:\n\nIndtast venligst et sidenummer mellem 100 og 899.");
		ttvForm.request.focus();
		return false;
	} else {
		openTTV(ttvForm.request.value)
		return true;
	}
 return false;
}

