

/*------------------------------------------
Function	openWindow 
------------------------------------------*/
<!--
var newWin;
function openWindow(url, width, height) {
	newWin = window.open(url,'service','width='+width+',height='+height+',status=yes,scrollbars=yes,resizable=yes');
	newWin.focus();
}
//-->

