function openWindow(url, width, height)
{
	var str = 'width='+width+',height='+height+',toolbar=no,';
       str+= 'location=no,directories=no,status=no,menubar=no,';
       str+= 'scrollbars=no,copyhistory=no,resizable=no';

	var win = window.open(url, 'myWindow', str);
}