var newwin;
function openWin(url){
	if(newwin){
		if(!newwin.closed){
			newwin.location.href=url;
			newwin.focus();
		}
		else{
			newwin=window.open(url,'otherwindow','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=1036,height=760');
		}
	}
	else{
			newwin=window.open(url,'otherwindow','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=1036,height=760');
	}
}


