function new_window(url) {
	link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,left=270,top=60,width=530,height=430");
}

function new_window_wh(url, w, h) {
	link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=270,top=60,width="+w+",height="+h);
}


function new_window_sb(url) {
	link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=270,top=60,width=530,height=430");
}
