
function openWin(url,name) {

var string;

if (name=='tell') {
string = "width=500,height=425" }
else if (name=='map') {
string = "width=350,height=330" }
else if (name=='pic') {
string = "width=450,height=370" }
else if (name=='pic_vert') {
string = "width=370,height=500" }
else if (name=='copy') {
string = "width=500,height=230" }
else { string = "width=500,height=500" }

win = window.open(url,name,string);
win.focus();

}

//inetz mouseover functions follow

var popUpWin
var isIE3
var isIE3 = (navigator.appVersion.indexOf("MSIE 3") != -1) ? true : false

function openWindow(url) {
        popUpWin = window.open(url,popUpWin,"height=350,width=450,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0, menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0", "pop");
        if (popUpWin.opener == null) {
                popUpWin.opener = window
        }
        if (navigator.appName == 'Netscape') {
        popUpWin.focus();
        }
}
function closeWindow() {

        if (isIE3) {
                popUpWin = window.open("/blank.html","TechSpecs","toolbar=no,location=0,directories=0,status=no,menubar=no,scrollbars=no,resizable=no,height=1,width=1")
        }

        if (popUpWin && !popUpWin.closed) {
                popUpWin.close()
        }
        popUpWin = ""
}

//code to bust out of frames
if (top.frames.length!=0) {
	top.location=self.document.location;
}
if (parent.frames.length > 0) {
	parent.location.href = self.document.location
}

function openContact2() {
	contactWin=window.open('http://www.bluemarmot.com/contact.php?ws=utw','contact','width=350,height=475,scrollbars=1,resizable=1')
}

function openPrivacy2()
{
	contactWin=window.open('http://www.bluemarmot.com/privacy.phtml?ws=utw','privacy','width=450,height=500,scrollbars=1,resizable=1')
}