// seyahat.js

	function sendAction(actionName) {
		try{
			form = document.forms[0];
			form.action.value = actionName;
		}catch(e){
			alert("form hatasi : " + e.description);
		}
	}
	

	function openwin(sURL,h,w) {
     var newWindow = window.open(sURL,"","status,scrollbars,height="+h+",width="+w);
    }

