function item_search2(idx){
    newwindow('Include/search/samPlay.htm?recIdx=' + idx,390,230);
}
function item_search3(idx){
    newwindow('/Include/search/samPlay.htm?recIdx=' + idx,390,230);
}

function newwindow(URL,width,height) {
var str,width,height;
str="'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,top=200,left=400,";
str=str+"width="+width;
str=str+",height="+height+"'";
window.open(URL,'remote',str);
}