// JavaScript Document

function adme(imgurl,w,h,linkurl,target){
document.write('<a href="'+linkurl+'" target="'+target+'">');
document.write('<img src="'+imgurl+'" width="'+w+'" height="'+h+'" border="0">');
document.write('</a>');
}


function ad(imgurl,w,h,linkurl,target){

if(imgurl.indexOf('swf')>0){
	flash(imgurl,w,h,"opaque")
	
}else{

if(linkurl != null && linkurl != "")
	document.write('<a href="'+linkurl+'" target="'+target+'">');
	
	
if(imgurl != null && imgurl != "")
	document.write('<img src="'+imgurl+'" width="'+w+'" height="'+h+'" border="0">');
else
	document.write('<img src="/advertisement/default.gif" width="'+w+'" height="'+h+'" border="0">');
if(linkurl != null && linkurl != "")
	document.write('</a>');
}
}
