function openWindow(url, winHandle, winProp){
	newWin=window.open(url, winHandle, winProp);
	newWin.focus();
}

