// Pop Up Window

// Idea by:  Nic Wolfe 
// This script and many more are available free online at 
// The JavaScript Source!! http://javascript.internet.com 

// Begin
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=0,width=500,height=500');");
}
// End 

///////////////////////////////////////////////////////////////

// Select And Copy

// This script and many more are available free online at 
// The JavaScript Source!! http://javascript.internet.com 
// Original:  Russ (NewXS3@aol.com) 
// Web Site:  http://dblast.cjb.net 

// Begin
function copyit(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}
//  End 


