//// Function for opening a new window ////

function newwin() {
var win = window.open( '' ,'subwin','');
win.focus();
} // end of newwin function


//// Function for change content display ////

function 	showdef(value) {
if (value==1) {
if (document.layers) {
       window.document.layers["content"].document.open();
		 window.document.layers["content"].document.write('<span CLASS="headline">Before you make your next career move,<br><br>you can	use these tools to evaluate your choices.</span>');
		 window.document.layers["content"].document.close(); }
	else	{
        document.all.text.innerHTML = '<span CLASS="headline">Before you make your next career move,<br><br>you can use these tools to evaluate your choices.</span>'; }
   	}  
else if (value==2) {
if (document.layers) {
          window.document.layers["content"].document.open();
			 window.document.layers["content"].document.write('<span CLASS="headline">"Find out how much you need to make in the city<br><br>you are moving to, to maintain your lifestyle".</span>');
			 window.document.layers["content"].document.close(); }
	else 	{
       	 document.all.text.innerHTML = '<span CLASS="headline">"Find out how much you need to make in the city<br><br>you are moving to, to maintain your lifestyle".</span>'; }
   	}  	
	
else if (value==3) {
if (document.layers) {
          window.document.layers["content"].document.open();
			 window.document.layers["content"].document.write('<span CLASS="headline">"Estimate the moving costs between cities and states".</span>');
			 window.document.layers["content"].document.close(); }
	else 	{
       	 document.all.text.innerHTML = '<span CLASS="headline">"Estimate the moving costs between cities and states".</span>'; }
   	}  
	
else if (value==4) {
if (document.layers) {
          window.document.layers["content"].document.open();
			 window.document.layers["content"].document.write('<span CLASS="headline">"Search for an apartment or home before you make a	move".</span>');
			 window.document.layers["content"].document.close(); }
	else 	{
       	 document.all.text.innerHTML = '<span CLASS="headline">"Search for an apartment or home before you make a	move".</span>'; }
   	}  
} //end of showdef function