function jsOpenhWnd(u){
   p='toolbar=no,height=660,width=380,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no';hWnd=window.open(u,'Hwnd',p);hWnd.focus();
}

function init() {
   self.moveTo(0,0)
   self.resizeTo(screen.availWidth,screen.availHeight)
}

function setEmpty(content, field) {
	if(document.getElementById(field).value == content) {
		document.getElementById(field).value = "";
	}
}

function setValue(content, field) {
	if(document.getElementById(field).value == "") {
		document.getElementById(field).value = content;
	}
}

function damnfrms() {
   if (top.location !== self.location) {
      top.location=self.location;
   }
}