// JavaScript Document
_banner = '<iframe src="http://www.100hitz.com/ads/banner.html" width="468" height="60" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
//_banner = '<iframe src="http://www.savenetradio.org/banners/savenetradio_468x60.gif" width="468" height="60" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
	
_leader = '<iframe src="http://www.100hitz.com/ads/leader.html" width="728" height="90" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
//_leader = '<iframe src="http://209.9.226.89/mirror/banner/SaveNetRadio_728x90_v1.gif" width="728" height="90" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';

_cube = '<iframe src="http://www.100hitz.com/ads/cube.html" width="300" height="250" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
//_cube = '<iframe src="http://www.savenetradio.org/banners/300x250-black.gif" width="300" height="250" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';

_sky = '<iframe src="http://www.100hitz.com/ads/sky.html" width="160" height="600" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
//_sky = '<iframe src="http://209.9.226.89/mirror/banner/painsplatter_120x180.jpg" width="120" height="180" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';

_smallCube = '<iframe src="http://www.100hitz.com/ads/smallcube.html" width="180" height="150" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
//_smallCube = '<iframe src="http://www.savenetradio.org/banners/180x150callcongress.gif" width="180" height="150" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>';
	
function writeAd(type)
{
	var str;
	if (type == 'banner')
	{
		str = _banner;
	}
	else if(type == 'leader')
	{
		str = _leader;
	}
	else if(type == 'cube')
	{
		str = _cube;
	}
	else if(type == 'sky')
	{
		str = _sky;
	}
	else if(type == 'smallCube')
	{
		str = _smallCube;
	}
	else
	{
		str = _banner;
	}
	//
	printit(str);
}

function synched(targ, theurl)
{
	switch(targ)
	{
		case 'banner': str = '<iframe src="'+ theurl +'" width="468" height="60" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>'; break;
		case 'leader': str = '<iframe src="'+ theurl +'" width="728" height="90" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>'; break;
		case 'cube': str = '<iframe src="'+ theurl +'" width="300" height="250" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>'; break;
		case 'smallCube': str = '<iframe src="'+ theurl +'" width="180" height="150" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>'; break;
		case 'sky': str = '<iframe src="'+ theurl +'" width="160" height="600" application="yes" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" vspace="0" hspace="0"></iframe>'; break;
	}
	printit(str);
}

function printit(printStr)
{
	document.write('<html>\n<head>\n<sc'+'ript language="javascript" type="text/javascript" src="http://www.100hitz.com/ads/ads.js"><\/sc'+'ript>\n</head>\n<body>\n' + printStr + '\n</body>\n</html>\n');
	document.close();
}