/* 

	File Description & Change Log

	-------------------------------------------------------



	Details

	-------

	

	Title: 		jScripts.js
	Author: 	Andy Smith
	Of:			Tsuko Limited
	Creation:	20/08/2008

	Note:		This is the java script page that defines 
				general usage Java scripts.

	Edits
	-----
	Author: 	Andy Smith
	Date:		20/08/2008


	Note:		


	-------------------------------------------------------

*/

function printpage() {
	window.print();  
}

var urlAddress = "http://www.ca-training.co.uk"; 
var pageName = "CA Training Website"; 

function addToFavorites() { 
	if (window.external.AddFavorite) { 
		window.external.AddFavorite(urlAddress,pageName) 
	} else { 
		alert("Sorry! Your browser doesn't support this automated function. Please try pressing Ctrl-D"); 
	}
}