<!--
//status bar handler
function statushandler(){
window.status='Thanks for visiting CantBarsed.com'
return true
}
if (document.layers)
document.captureevents(event.mouseover | event.mouseout)
document.onmouseover=statushandler
document.onmouseout=statushandler

//clear form
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

//external links
function OpenLink(theURL){ 
window.open(theURL); 
}

//Popup Window Script (http://wsabstract.com)
function openpopup(){
var popurl="http://www.cantbarsed.co.uk/entryform.htm"
winpops=window.open(popurl,"","width=560,height=400,scrollbars,resizable,")
}

//Popup Window script v2.0
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
//-->