function openPrivacyWin() {
	/* old version
	var myWin = window.open("privacy_policy.html","ncem","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=631,height=400")
	if (myWin.opener == null)
		myWin.opener = window;
	myWin.opener.name = "opener";
	*/
window.location = 'http://www.merck.com/policy/privacy/home.html';
}

function openTermsWin() {
	var myWin = window.open("terms.html","ncem","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=631,height=400")
	if (myWin.opener == null)
		myWin.opener = window;
	myWin.opener.name = "opener";
}

function openExternalWinMerckSchering(product, url) {
    if(! confirm("Thank you for visiting " + product + ".com.\n\nMerck/Schering-Plough does not review or control the content at the site to which this\nhyperlink connects; therefore, this hyperlink does not constitute an endorsement by\nMerck/Schering-Plough of the content of any non-Merck/Schering-Plough site.\n\nDo you wish to continue?"))
        return;

    var externalWin = window.open(url,null,"toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=600,height=500");
    if (externalWin.opener == null)
        externalWin.opener=window;
        externalWin.opener.name="opener";
}