
	
	/* This function should be used for all image rollover effects */

	function changeImage(imageName,newImageSource) {
		if (document.images) {
			document.images[imageName].src = newImageSource;
		}
	}
//-->

function popup(mylink, windowname)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	href=mylink;
	else
	href=mylink.href;
	window.open(href,null,
    			"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
	return false;
}

<!--
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;
}
//-->

w1 = (screen.width - 15 );
h1 = (screen.height - 150 );

var pixelsFromLeft = 10;
var pixelsFromTop = 5;

function openQuickLink(u1) {
	if (confirm("EXIT...\n\n You are now leaving the LUNESTA website. Sepracor is not responsible for the information contained in any of the linked sites.")) {
			myWin= open(u1, "_blank","width="+w1+",height="+h1+",scrollbars=yes,status=yes,toolbar=yes,menubar=yes,resizable=yes,alwaysRaised,screenX="+pixelsFromLeft+",left="+pixelsFromLeft+",screenY="+pixelsFromTop+",top="+pixelsFromTop+",location=yes");
		}
}
