function textMenu_home(){
}//end

function textMenu_cme(){
}//end

var urlVar; 
/*
function makeUrlVar(x,y){ 
if(document.all){ 
urlVar = "http://www.mssmtv.org/template/frameset_clipstream.html?folder=" + x + "&doctor=" + y; 
}else{ 
urlVar = "http://www.mssmtv.org/template/frameset_clipstream_NS.html?folder=" + x + "&doctor=" + y;
}//end if
openCSUrl(urlVar);
}//end makeUrlVar()
*/

function makeUrlVar(x,y){ 
		urlVar = "http://www.mssmtv.org/player/player.php?id=" + y; 
		openUrl(urlVar);
} 

//Centering presentation window
function openUrl(urlVar){
var popup_width=730;
    var popup_height=580;
    var screen_width=window.screen.width;
    var screen_height=window.screen.height;
    var popup_left=Math.round((screen_width-popup_width)/2);
    var popup_top=Math.round((screen_height-popup_height)/2); 	
   window.open(urlVar,'',"height=" + popup_height + ",width=" + popup_width + ",resizable=no,left="+ popup_left + ",top=" +popup_top+ ",scrollbars=no");
}//end openUrl()

//Centering presentation window (Duplicate of function above)
function openCSUrl(urlVar){
var popup_width=730;
    var popup_height=580;
    var screen_width=window.screen.width;
    var screen_height=window.screen.height;
    var popup_left=Math.round((screen_width-popup_width)/2);
    var popup_top=Math.round((screen_height-popup_height)/2); 	
   window.open(urlVar,'',"height=" + popup_height + ",width=" + popup_width + ",resizable=no,left="+ popup_left + ",top=" +popup_top+ ",scrollbars=no");
}//end openUrl()

function popup(urlVar,x,y){
var popup_width=x;
    var popup_height=y;
    var screen_width=window.screen.width;
    var screen_height=window.screen.height;
    var popup_left=Math.round((screen_width-popup_width)/2);
    var popup_top=Math.round((screen_height-popup_height)/2); 	
   window.open(urlVar,'',"height=" + popup_height + ",width=" + popup_width + ",resizable=no,left="+ popup_left + ",top=" +popup_top+ ",scrollbars=1");

}//end popup
