
// function for login and bbs

function talkcity(bbslink) {

bbswindow=window.open(bbslink,"","personalbar=no,menubar=yes,toolbar=no,location=no,resizable=yes,scrollbars=yes,status=yes,height=500,width=710")
}


// function for popup poll results

function popUpResultsWin(height, width, url) {
window.open(
            "",
            "PollResults",
            "width="+width+",height="+height+",RESIZABLE=NO,SCROLLBARS=YES"
     );
}


// functions for video room

function seriesVideo1(playertype) {


	var num = document.sopranos1.menudo.selectedIndex;

	var infostring = document.sopranos1.menudo.options[num].value;

		if (infostring == "blank") {

		alert("Choose a clip first from the Episode Promos pulldown menu, then click your player to view!") ;

		return ;

		}

	var info = infostring.split('+');

	var videotitle = info[0];

	var qtlocation = info[1];

	var reallocation = info[2];

	if (playertype == 'qt') {

		video(info[1],info[0],playertype,'320','256','/marriedman/img/template/pop_up_video.gif','#ffffff','promo-black')

		}

	else if (playertype == 'real') {

		video(info[2],info[0],playertype,'240','180','/marriedman/img/template/pop_up_video.gif','#ffffff','promo-black')

		}
	}



function seriesVideo2(playertype) {


	var num = document.sopranos2.menudo.selectedIndex;

	var infostring = document.sopranos2.menudo.options[num].value;

		if (infostring == "blank") {

		alert("Choose a clip first from the Episode Clips pulldown menu, then click your player to view!") ;

		return ;

		}

	var info = infostring.split('+');

	var videotitle = info[0];

	var qtlocation = info[1];

	var reallocation = info[2];

	if (playertype == 'qt') {

		video(info[1],info[0],playertype,'320','256','/sopranos/img/template/banner.jpg','#ffffff','promo-black')

		}

	else if (playertype == 'real') {

		video(info[2],info[0],playertype,'240','180','/sopranos/img/template/banner.jpg','#ffffff','promo-black')

		}
	}


function seriesVideo3(playertype) {


	var num = document.sopranos3.menudo.selectedIndex;

	var infostring = document.sopranos3.menudo.options[num].value;

		if (infostring == "blank") {

		alert("Choose a clip first from the Interviews pulldown menu, then click your player to view!") ;

		return ;

		}

	var info = infostring.split('+');

	var videotitle = info[0];

	var qtlocation = info[1];

	var reallocation = info[2];

	if (playertype == 'qt') {

		video(info[1],info[0],playertype,'320','256','/sopranos/img/template/banner.jpg','#ffffff','promo-black')

		}

	else if (playertype == 'real') {

		video(info[2],info[0],playertype,'240','180','/sopranos/img/template/banner.jpg','#ffffff','promo-black')

		}
	}


// generic open window script

function openWindow(theURL,winName,features) {

window.open(theURL,winName,features);

}