function copyit(theField) {
	var tempval=eval("document."+theField)
	tempval.focus()
	tempval.select()
	therange=tempval.createTextRange()
	therange.execCommand("Copy")
}

function open_window(theURL,winName,features) { 
	window.open(theURL,winName,features);
}