﻿// JavaScript Document

document.write("<script type='text/javascript' src='http://www.netcar.de/fileadmin/netcarcc/popup.js'></script>");

window.onload = function(){ // Better use use a modern onDomReady-Event instead
	if(document.getElementById && document.getElementsByTagName){ // Check DOM
		popup = new PopUp(); // create new PopUp-Instance
		popup.addType({ // add a additional type with custom Properties
		name: 'netcarcc',
		width: 680,
		height: 650,
		scrollbars: true,
		location:true,
		title:"Neuwagen-Konfigurator im Pop-Up öffnen"
	});
	popup.apply(); // Apply Popup-Behavior to all Links using the Class 'popup'
	//popup.open('http://www.webkrauts.de'); // call open Method onload to open popup directly
	//popup.open('http://www.webkrauts.de','pdf'); // 2nd Param optional to define a special type
	}
}

document.write('<a class="cartim netcarcc" href="http://konfigurator.cartim.de/6ap" title="Neuwagen-Konfigurator &ouml;ffnen und Neufahrzeug zusammenstellen!">&raquo; Zum Neuwagen-Konfigurator</a>');