function formrule(field)
{
	if (field.defaultValue == field.value) field.value = "";
}
function formrule2(field) {
  if (field.value == "") {
    field.value = field.defaultValue;
  }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// function popupWindow(URL) {
// window.open(URL, "popupWindow", "scrollbars=no,resizable=yes,width=250,height=80");
// }
function popupWindow(URL, width, height) {
window.open(URL, "video", "scrollbars=no,resizable=yes,width=" + width + " ,height=" + height);
}
