var windowHandle = null

function PrintContent(){
	
	windowHandle = window.open('about:blank','printer','width=620,height=400');
    setTimeout('updateWindow()',100);
	
}

function updateWindow() {
    windowHandle.document.open();
	windowHandle.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	windowHandle.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
	windowHandle.document.write('<head>');
	windowHandle.document.write('<title>MissetMarkt</title>');
	windowHandle.document.write('<link href="/css/print.css" rel="stylesheet" type="text/css" />');
	windowHandle.document.write('</head>');
	windowHandle.document.write('<body onload="print();close()">');
    //Write Header to popup
	windowHandle.document.write('<img src="/images/missetmarkt_logo2.gif" /><br />');
	//Write Content to popup
    windowHandle.document.write(document.getElementById('advert').innerHTML);
	//Write Copyrights to poppup
    windowHandle.document.write('<p>Copyright 2006 Reed Business Information</p>');	
    windowHandle.document.close();
}

function bookmark(){
	if (document.all)
		window.external.AddFavorite(window.location.href,document.title)
}

function TellAFriend(){
	if (document.all)
		window.external.AddFavorite(window.location.href,document.title)
}

function setTarget(){
	for(a = 0; a < document.links.length; a++)
	{
	  if(document.links[a].name == "external")
		document.links[a].target = "_blank";
	}
}

function outLinks(myURL){
	linkTarget="_blank";
	for (var i=0; i<=(document.links.length-1); i++){
		isExternal=((document.links[i].href.indexOf("http://")!=-1)&&(document.links[i].href.indexOf(myURL)==-1))
		if(isExternal){
			document.links[i].target = linkTarget;
		}
	}
}

outLinks(document.domain);