function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

function logout()
{
	if(confirm('Do you want to logout of the Dealer Lounge?'))
	{
		if(window.opener)
		{
			if(window.opener.document.getElementById('dealersLoungeLoginPageMarker'))
			{
				window.opener.location="dealersloungelogin.html";
			}
		}
		window.location="logout.html";
	}
}

function launchPreview(url, id)
{
	window.open(url,id,'height=400,width=600,resizable=yes');
}