<!--
function photowindow(theURL) { 
  window.open(theURL,'popup1','scrollbars=no, width=500,height=400');
}

function spcialitywindow(theURL) { 
  window.open(theURL,'popup2','scrollbars=no,width=500,height=350');
}

function contactwindow(theURL) { 
  window.open(theURL,'popup3','scrollbars=no, width=250,height=250');
}

function videowindow(theURL) { 
  window.open(theURL,'popup4','scrollbars=no, width=250,height=250');
}
function commentwindow(theURL) { 

if (commentform.email.value == "")
	alert("Please enter a valid email address")
else
  window.open('addcomment.asp?id='+ theURL + '&comment=' + commentform.comment.value + '&name=' + commentform.name.value + '&email=' + commentform.email.value ,'popup5','scrollbars=no, width=250,height=250');
}

function viewcommentwindow(theURL) { 
  window.open('viewcomments.asp?id='+ theURL ,'popup6','scrollbars=yes, width=350,height=250');
}



//-->
