<!--
var NewWin, TrueWin; 
function onw(W_WIDTH,W_HIGHT,W_SOURCE,W_SCROOL){
	var sw
	var sh
	sw = 0;	sh = 0;	sw = screen.width; sh = screen.height;
	//new window top point
	var cx = (sw - W_WIDTH)/2; 
	//new window left point
	var cy = (sh - W_HIGHT)/2;
	if(TrueWin =="true" && !NewWin.closed) NewWin.close();
	TrueWin = "true";
	NewWin = window.open(W_SOURCE,'ONW','width='+W_WIDTH+',height='+W_HIGHT+', ScreenX='+cx+', left='+cx+', ScreenY='+cy+', top='+cy+', resizable=no,status=no,scrollbars='+ W_SCROOL);
}

function check_e_edu(){
	if( document.form1.highschool1.checked != true && document.form1.highschool2.checked != true && document.form1.highschool3.checked != true && document.form1.none.checked != true ){
		alert('Please choose from the options!');
		return false;
	}
	return true;
}

function view_form(form_name){
	base_url = 'http://uscis.gov/graphics/formsfee/forms/';
	onw(770,500,base_url+form_name,'yes');
}

function confirmation(url,message){
	if( confirm(message))
		window.location.href=url;
}

function tell_a_friend(url){
	onw(500,500,'/tell_a_friend.php?backurl='+escape(url),'no');
}
-->