<!--
function popUpImage(theURL,width, height)
{
	width = width-0+17;
	height=height;
	if (width > screen.width) width=screen.width;
	if (height > screen.height) height=screen.height-60;
	popUpWin = window.open(theURL,'ViewFullImage',"toolbar=no,width="+ width+",height="+ height+ ",directories=no,status=no,scrollbars=yes,resizable=yes, menubar=no");
	popUpWin.moveTo(200,10);
	if (!popUpWin.opener) popUpWin.opener = self;
	with (popUpWin.document) {
		write('<HTML><HEAD><TITLE>View Full Image</TITLE>');
		write('</head>');
		write('<BODY bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
		write('<IMG SRC="' + theURL + '" alt="Click on image to close window" onclick="window.close()">');
		write('</BODY></HTML>');
		close();
	}
}
function popUpContent(url, x, y) {
	if (!x){x=500;}
	if (!y){y=400;}
	if (x>400 && y>300){
	var popUpWin = window.open(url,'','height='+y+',width='+x+', location=no, scrollbars=no, menubars=no,toolbars=no,resizable=no');
	}else{
	var popUpWin = window.open(url,'','height='+y+',width='+x+', location=no, scrollbars=no, menubars=no,toolbars=no,resizable=yes');
	}
	if (!popUpWin.opener) 
	popUpWin.opener = self;
}
function Close(){
	window.close();
}
function roll(img_name, img_src)
   {
   document[img_name].src = img_src;
   }
function btnBack(){
	history.go(-1);

}
function deleteConfirm(str) {
  if (confirm(str)){	
    return true;
  }	
  else{
    return false;
  }	
}
//-->
