
document.write("<link rel='stylesheet' href='../styles/bartendingStyles.css' type='text/css'>")

//document.write(navigator.appName + "<br>")
//document.write("BROWSERVERSION: ")
//document.write(navigator.appVersion + "<br>")
//document.write("CODE: ")
//document.write(navigator.appCodeName + "<br>")
//document.write("PLATFORM: ")
//document.write(navigator.platform + "<br>")
//document.write("REFERRER: ")
//document.write(document.referrer + "<br>")





var newwin;
var winWidth = 860;
var winHeight = 800;
var screen_height = window.screen.availHeight;
var screen_width = window.screen.availWidth;
var left = ((screen_width/2)-0.5*winWidth);
var top = ((screen_height/2)-0.5*winHeight);


function launchWin(winurl,winname,winfeatures)
{
        //This launches a new window and then
        //focuses it if window.focus() is supported.
        if(newwin){
                newwin.close();
        }

        newwin = window.open(winurl,winname,winfeatures);
        
        if(javascript_version > 1.0)
        {
                //delay a bit here because IE4 encounters errors
                //when trying to focus a recently opened window
                setTimeout('newwin.focus();',250);
        }
}

function closepopup(){
	if(newwin){
		newwin.close();
	}
}

function initWin(){
        window.moveTo(0,0);
        window.resizeTo(screen_width,screen_height);
}


function closeWin(){
        newwin.close();
}

function media_select(_url){
	self.location='medianav_'+_url+'.html';
	stage.location=_url+'.asp';
}


function initMediaWin(){
       window.moveTo(0,0);
       window.resizeTo(680,530);
}

function initMediaWin_2(){

       window.moveTo(0,0);
       window.resizeTo(700,660);
	window.focus();
}
