/** Create a new window, done like this for uniformity **/

function small_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=480,height=500';
newWindow = window.open(myurl, "Add_from_Src_to_Dest", props);
newWindow.moveTo(250,150);
}

function fullDetails_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=700,height=600';
newWindow = window.open(myurl, "Add_from_Src_to_Dest", props);
newWindow.moveTo(250,150);
}