	function openPopup(objForm,URL,title){
		var ozellikler = 'scrollbars=auto,resizeble=1,width=400,height=300';
		var url = URL;
		var title = title;

		if(url=='consulate_new_form.jsp'){
			w=window.open(url,'','width=800,height=600');				
		}else{				
			w=window.open(url,'','width=400,height=300');				
		}
	}

