function winopen(arg,winwidth,winheight)
 {
		var window_left = 60;
		var window_top = 40;
		window.open(arg,"",'width='+winwidth+',height='+winheight+',top=' + window_top + ',left=' + window_left + ', resizable=no, scrollbars=yes');
}