/* PopUp */
function ShowPremiumCar( carID )
{
	window.open( "/carpresenter/default.asp?car="+carID, "PopUp", "width=805,height=820,scrollbars=yes");
}

function openWin(myURL) {
  window.open('lib/bild_gross.asp?l='+escape(myURL.href), "win"+(new Date()).getSeconds(),
    'width=800,height=600,resizable=yes');
  return false;
}

function openWin2(myURL) {
  window.open(myURL.href, "win"+(new Date()).getSeconds(),
    'width=540,height=435');
  return false;
}


/* External Links */

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";
 }
}

/* onLoader */

window.onload = function()
	{
		externalLinks();
	}







