﻿/* 

* Scripts to be executed when they are called, or when an event is triggered, go in the head section.
* If you place a script in the head section, you will ensure that the script is loaded before anyone uses it.

* Scripts to be executed when the page loads go in the body section.
* If you place a script in the body section, it generates the content of a page.

*/

//<!-- ******************** goto_url script ************************** -->

function goto_url(url) 
	{//v1.0
		window.location.replace(url);
	}

//********************************popupmsg********************

function FP_popUpMsg(msg) {//v1.0
 alert(msg);
}

//<!-- ******************** end of script ************************** -->



