function DelConfirm(iserial)
{
	if (confirm("Are you sure?"))
	{
		window.navigate(iserial);
	}
}

function show_window(sid,h,w,str)
{

  var popup = window.open("aa", "News",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + h + ' height=' + w);
  //popup.location = sid;
  popup.document.write ('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>' + str + '</title>');
  popup.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"><link href="include/style.css" rel="stylesheet" type="text/css"></head>');
  popup.document.write ('<body><div align="center">');
  popup.document.write ('<img src="' + sid + '" width=280 height=260><br>');
  popup.document.write ('<table width="100%" border="0" cellpadding="3" cellspacing="0" bgcolor="#999999"><tr><td bgcolor="#CCCCCC"><div align="center">');
  popup.document.write (str+ '</div></td></tr></table></div></body></html>');
  
}
function show_bar_window(sid,h,w)
{

  var popup = window.open("aa", "News",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + h + ' height=' + w);
  
  popup.location = sid;
  

}