function toggleBtn( img, imgState )
{
   var rollover = document.images[img];
   rollover.src = '/images/'+img+'-'+imgState+'.jpg';
}
function openPoll( pID )
{
   var win=window.open( "/poll/pollResult.aro?"+pID, "pollResult", "height=375,width=500" );
   win.focus();
}
function openAdvWin( srch )
{
   var win=window.open( "/siteSearch/advanced.aro?srch="+srch, "advanced", "height=375,width=500" );
   win.focus();
}
function openMap( address, city )
{
   var win=window.open( "http://maps.google.com/maps?q="+address+","+city+",ON,Canada&t=h&spn=0.003814,0.004077&iwloc=addr", "map", "height=650,width=760,resizable=1" );
   win.focus();
}
function openAddressWin()
{
   var win=window.open( "/mailAddress.aro", "mail", "height=375,width=500" );
   win.focus();
}
function suggest(id)
{
   var win=window.open( 'suggest.aro?id='+id,'suggest','width=525,height=465,resizable=1');
   win.focus();
}
function businessHours(id)
{
   var win=window.open( 'storeHours.aro?id='+id,'suggest','width=525,height=465,resizable=1');
   win.focus();
}
function showCalendar()
{
   var win=window.open("calendar.aro","cal","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=340,height=350,left=387,top=259");
   win.focus();
}
function openBigImage( id )
{
   var win=window.open( "bigImage.aro?id=" + id, "big", "width=630,height=450,resizable=yes" );
   win.focus();
}
function openCard(card)
{
   var w=window.open("/postcards/viewCard.aro?c="+card,"card","height=500,width=500,resizable=1");
   w.focus();
}

function openEdit(id)
{open("editThread.aro?id="+id,"edit","width=575,height=580,scrollbars=yes,resizable=yes");}
function UserInfo( u )
{
   var w = window.open( "/forum/userInfo.aro?u=" + u, "uInfo", "width=525,height=400,toolbars=no,resizable=1" );
   w.focus();
}
function reportBadItem(id,msg,url)
{
   if( confirm("Click this link to report an item that is not suitable for this site.\nYour IP address will be sent with this notification.\nToo many false notifications will result in your IP being banned.\n\nSend Notification?" ) )
   {
      var v = new Image();
      v.src = "/reportItem.aro?i="+id+"&msg="+escape(msg)+"&url="+escape(url);

      alert("Notification sent.\nThank you for your assistance in maintaining CarletonPlace.com" );
   }
}
function openWin(url)
{
   var w=window.open('uploads/'+url,'upload','width=550,height=450,scrollbars=1,resizable=1');
   w.focus();
}