<!--
var newWindow=null;
function window_open(w,h,s_data,w_data){
	ww=w.substring(0,w.length);
	hh=h.substring(0,h.length);
	ss_data = s_data;
	ww_data = w_data;
	setTimeout('small_win(ww,hh,ss_data,ww_data)',1000);
}
function small_win(wi,he,s_data,w_data) {
	newWindow = window.open(s_data, w_data, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width="+wi+",height="+he);
}
//--->

<!---
function ViewImage(hah) {
  myContact = launch(hah, "myContact", "height=395,width=520,top=50,left=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myBonny");
}
function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}
//--->