function small_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=425,height=200';
newWindow = window.open(myurl, "Add_from_Src_to_Software", props);
}

function big_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=575,height=300';
newWindow = window.open(myurl, "Add_from_Src_to_Software", props);
}

function long_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=490,height=150';
newWindow = window.open(myurl, "Add_from_Src_to_Software", props);
}

function tall_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=300,height=500';
newWindow = window.open(myurl, "Add_from_Src_to_Software", props);
}

// End -->
