// JavaScript Document
function popWin(url) {
	var theURL=url;
	newWin = window.open(theURL,'win','toolbar=No,menubar=No,left=200,top=200,width=350,resizable=yes,scrollbars=yes,status=No,location=No,height=400');
}

function show_hide(object){ 
    show = true; 
    obj1 = document.getElementById("master").getElementsByTagName("div"); 
    obj2 = document.getElementById(object); 
    if (obj2.style.display == '') 
        show = false; 
    for (i = 0; i < obj1.length; i++) { 
        obj1[i].style.display = 'none'; 
     } 
    if (show == true) 
        obj2.style.display = ''; 
} 

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}