// JavaScript Document
function miniwindow(target,nameofwindow,height,width,status,left,top,resizeable) { 
	var s_width = screen.width;
	var s_height = screen.height;
	var r_h = (s_height-height)/2;
	var r_w = (s_width-width)/2;

	window.open(target,nameofwindow,'location=0,toolbar=0,directoris=0,status='+status+',menubar=0,scrollbars=0,resizable='+resizeable+',width='+width+',height='+height+',left='+r_w+',top='+r_h+' '); 
}
