
var newWin;		
function showPage(page,width,height,left,top,scrollbars)
{	
	if (typeof(newWin) != "undefined")
	{
		newWin.close();
	};
	newWin=window.open(page,"samewindow","width="+width+",height="+height+",left="+left+",top="+top+",scrollbars="+scrollbars);
	newWin.focus();
	return false;
};

function feedback()
{
showPage('feedbackYND.htm',screen.width*5/6,screen.height*5/7,screen.width*1/12,screen.height*1/7,'yes');
return false;
};

function subscribe()
{
	showPage('mnrmailinglist.htm',screen.width*5/6,screen.height*5/7,screen.width*1/12,screen.height*1/7,'yes');
	return false;
};

function bookmark()
{
window.external.AddFavorite('http://www.yournetdoctor.com', document.title);
}

function setActiveStyleSheet(title) {
   var i, a, main;
   for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
     if(a.getAttribute("rel").indexOf("style") != -1
        && a.getAttribute("title")) {
       a.disabled = true;
       if(a.getAttribute("title") == title) a.disabled = false;
     }
   }
}
