function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=840,height=575,left = 50,top = 50');");

}

function HighlightField(fieldName) {
	var tempval = eval("document." + fieldName)
	tempval.focus()
	tempval.select()
	if (document.all) { // If we're in IE (so we can copy to clipboard)
		therange = tempval.createTextRange()
		therange.execCommand("Copy")
	}
}
