/*
|--------------------------------------------------------------------------
| Amedia Creative Frontend Framework > URL
|--------------------------------------------------------------------------
|
| @package		Amedia Creative
| @subpackage	Frontend Framework
| @company		Amedia Creative, Inc.
| @phone		310/651/8733
| @fax			310/388/1210
| @author		Joey Avino
| @email		joey@amediacreative.com
| @link			http://www.amediacreative.com
| @copyright	2008 Amedia Creative, Inc.
| @requires 	mootools.1.2.js
|
*/

/*
|--------------------------------------------------------------------------
| Amedia Creative Frontend Framework > URL > Core JavaScript
|--------------------------------------------------------------------------
|
| NOTE: Do not change the names of these classes.
|
*/

	/**
	* Function called inline to open URL's in a new window.
	*
	* @name 	call_url
	* @access 	public
	* @param 	var-type none
	* @return 	none
	* @author 	Joey Avino
	* @email	joey@amediacreative.com
	*/
	function call_url(url) {

		window.open(url);

	}