/**********************************************
general functions for pop-up windows
**********************************************/

function tourPop(sURL){  
     newwindow=open(sURL,"tour","left=300,top=200,scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=255,height=250");
}

function tourProperty(sURL){  
     newwindow=open(sURL,"tour","left=200,top=15,scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=525,height=530");
}

function targetopener(mylink, closeme, closeonly)
{
if (! (window.focus && window.opener))return true;
window.opener.focus();
if (! closeonly)window.opener.location.href=mylink.href;
if (closeme)window.close();
return false;
}
function toggleDiv(id,flagit) {
if (flagit=="1"){
if (document.layers) document.layers[''+id+''].visibility = "show"
else if (document.all) document.all[''+id+''].style.visibility = "visible"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}
else
if (flagit=="0"){
if (document.layers) document.layers[''+id+''].visibility = "hide"
else if (document.all) document.all[''+id+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}
}

function openbbd()
{
self.moveTo(0,0)
self.resizeTo(screen.width,screen.height)
window.location.href = "http://www.tonedogmedia.com/";
}


