//-------------------------------------------
function openNewWindow()  {
    newWin=window.open( 'http://www.nebiru.com/webcam/java2cam.cfm?seconds=30',
                        'newWin',
                        'width=342,height=270,scrollbars=no,resizable=no,menubar=no,toolbar=no,location=no');
    newWin.focus();
} 

//-------------------------------------------
/*
var host=location.host.toLowerCase()
if (host != "www.spinning-jennie.com"){
  document.location="http://www.spinning-jennie.com/index.cfm"
}
*/ 
//-------------------------------------------
var globalCommentWin=null; // global var so we can reuse the same window over and over
function viewComments(blog_id){
  globalCommentWin=open( "comments/view_comment.cfm?blog_id="+blog_id,
                         "globalCommentWin",
                         "width=450,height=340,scrollbars=yes,resizable=yes,toolbar=no");
  globalCommentWin.focus(); // bring the window to the front in case it was hidden
}

function verifyForm(){
  var f=document.form1;
  if (!validateString(f.username, "Name"))    return false;
  if (!validateString(f.comments, "comment")) return false;
  return true;
}
//-------------------------------------------