function open_window ( sent_url, sent_width, sent_height, window_name )
{
	var url = sent_url;
	window.open( url, window_name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + sent_width + ',height=' + sent_height );

}