function windowPop(getpage) {
	window.open(getpage,'','toolbar=no,width=520,height=560,directories=no,status=no,scrollbars=no,resizable=yes,menubar=no')
}

function webed(name,id) {
	window.open('vmt/index.php?action=manage&type=editart&mode=popup&pid='+id+'&name=' + name, 'editwin','resizable=yes,status=no,toolbar=no,directories=no,menubar=no,location=no,width=860,height=510');
}

function image_pop(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function image_open(image_loc,img){
  HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+20,document.load_image.height+90)'></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no,menubar=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  obj_img = document.getElementById(img);
  obj_img.src= obj_img.src;
}

function checkform (form) {
	var e = form.elements;
	for ( var elem, i = 0; ( elem = e[i] ); i++ ){
		if ( elem.type == 'text' ){
			if (elem.value.length==0) {
				elem.style.borderColor = "#f00";
				// elem.style.borderize = "1px";
				return false;
			};
		}
	}
return true;
}