<!-- //

function break_out( page ){	if( page!=top ) top.location=page.location }

function get_current_date( )
{
	var dys=new Array( "Sun","Mon","Tue","Wed","Thu","Fri","Sat" )
	var mos=new Array( "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" )
	var dt =new Date(); var dy = dt.getDate()
	var yr =dt.getYear(); if (yr<1000) yr +=1900 // Y2K compliant

	document.write( dys[dt.getDay()]+", "+mos[dt.getMonth()]+" "+dy+", "+yr+" " ); dt = yr = null
}

function get_num_from( str, locator ){	return eval( parseInt( str.substr( str.indexOf( locator )+locator.length ) ) ) }

function show_val( v )
{
	test=open('','a','toolbar=no,location=no,menubar=no,top=100,left=100,width=500,height=300')
	with( test ){ document.write("<center><br><br><a href=# onClick='self.close()'>"+v+"</a></center>"); focus() }
}

function respace( str )
{
	if( str.indexOf('%') == -1 ) return str
	else return respace( str.substring( 0,str.indexOf('%') ) +" "+ str.substring( str.indexOf('%')+3 ) )
}

// -->
