//Randomising the ads
//Javascript Created by Computerhope http://www.computerhope.com

function largesquare(){
//building the link
var pageID = document.getElementById("pageid").innerHTML;

lrgsquare = new Array();

lrgsquare[0] = '<a href="https://wic030p.server-secure.com/vs221082_secure/ed-views/ad.php?page=' + pageID + '&camp=art01&advert=art&image=lrg-sqre-grey-bg" target="_blank"><img class="ad1colhalf" src="/projects/educationviews/ads/lrg-square/arterial-ad1.jpg" alt="Advertisement: Arterial" /></a>';
lrgsquare[1] = '<a href="https://wic030p.server-secure.com/vs221082_secure/ed-views/ad.php?page=' + pageID + '&camp=tdta01&advert=tdta&image=lrg-sqre-white-bg" target="_blank"><img class="ad1colhalf" src="/projects/educationviews/ads/lrg-square/test-drive-ad.jpg" alt="Advertisement: Test Drive the Arts" /></a>';
lrgsquare[2] = '<a href="http://svc008.wic030p.server-web.com/ws-ads/clk.php?id=29" target="_blank"><img class="ad1colhalf" src="/projects/educationviews/ads/lrg-square/edviewsad.jpg" alt="Advertisement: Edviews e-Newsletter" /></a>';
lrgsquare[3] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="285" height="230"><param name="movie" value="ads/lrg-square/warner-village.swf"><param name="quality" value="high" /><embed src="ads/lrg-square/warner-village.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="285" height="230" href="http://www.myfun.com.au/"></embed></object>';
index = Math.floor(Math.random() * lrgsquare.length);
document.write(lrgsquare[index]);
//done
}