RandomCPNumber = Math.round(Math.random() * 20000);

function writeAdNew(site, slot) {
	them = 'http://ad.doubleclick.net/N622/';

	if (site == 'tpa') {
		site = 'tampa';
	}
	if (site == 'sar') {
		site = 'sarasota';
	}
	if (site == 'atl') {
		site = 'atlanta';
	}
	if (site == 'cha') {
		site = 'charlotte';
	}
	if (site == 'chi') {
		site = 'chicago';
	}
	if (site == 'wdc') {
		site = 'washingtondc';
	}

	site = site + '.creativeloafing/';

	if (slot == 1) {
		w = '728';
		h = '90';
	}
	if (slot == 2) {
		w = '103';
		h = '75';
	}
	if (slot == 3) {
		w = '160';
		h = '600';
	}
	if (slot == 4) {
		w = '300';
		h = '250';
	}
	if (slot == 6) {
		w = '160';
		h = '600';
		zoneKW = 'sky2';
	}
	if (slot == 7) {
		w = '728';
		h = '90';
		zoneKW = 'lead2';
	}
	if (slot == 8) {
		w = '160';
		h = '600';
		zoneKW = 'sky3';
	}

	sz = 'sz=' + w + 'x' + h + ';';
	tile = 'tile=' + slot + ';';
	if (pageKW == '') {
		var key = '';
	} 	else {
		var key = 'pg=' + pageKW + ';';
	}
	var zone = zoneKW + ';';
	// for interstitials
	// if (slot == 1) {
	// 	var inter = 'dcopt=ist;';
	// } else {
	//	var inter = '';
	// }

 	path = '/' + site + zone + key + sz + tile + 'ord=' + RandomCPNumber + '?';
	iframe = '<iframe src="' + them + 'adi' + path + '" width="' + w + '" height="' + h + '" scrolling="no" frameborder="0">';
	href = '<a href="' + them + 'jump' + path + '">';
	img = '<img src="' + them + 'ad' + path + '" width="' + w + '" height="' + h + '" alt="">';
//	alert(type);
//	document.write('<h3>'+ slot + '</h3>');
	document.write(iframe);
	document.write(href);
	document.write(img);
	document.write('</a>');
	document.write('</iframe>');


}

