function openWindow(url) {
	var newWindow;
	newWindow = window.open(url,'name','height=600,width=800,scrollbars=yes,resizable=yes');
	
	if (window.focus) {
		newWindow.focus()
	}
	
	return false;
}