var popWindow;

function openWindow(thePath,theWidht,theHeight,theAttributes) {
	if (theAttributes.length > 0) theAttributes = "," + theAttributes;
       if( !popWindow || popWindow.closed) {
		popWindow = window.open(thePath,"","width=" + theWidht + ",height=" + theHeight + theAttributes);
		if ( !popWindow.opener) popWindow.opener = window;
	}
	else {
		popWindow.location = thePath
		popWindow.resizeTo(theWidht,theHeight);
		popWindow.focus();
	}
}





function deleteImage(formField) {
	var theObject = eval("document.forms[0]." + formField);
	if (!theObject) theObject = eval("document.forms[1]." + formField);
	theObject.value = "";
	document.ObjImage.src = "/admin/images/NoPic100x74.gif";
	//document.ObjImage.src = "/images/pix.gif";
	if(document.all.DeleteImgButton) document.all.DeleteImgButton.style.visibility = "hidden";
}

function reDirect(newURL) {


	location = newURL;


}





function mailIt(inStr) {


	var newAddress = inStr.replace(/<>/,String.fromCharCode(64));


	location = "ma" + "il" + "to:" + newAddress


}

