  
	function setStyle(obj,style,value){
		getRef(obj).style[style]= value;
	}
	
	function getRef(obj){
		return (typeof obj == "string") ?
			 document.getElementById(obj) : obj;
	}

	function redirectForm(myForm) {
		
		var w = window.open('','Popup_Window','');
		myForm.target = 'Popup_Window';
		myForm.submit();
		return true;
	}