/*
// Initial script to resize
window.moveTo(0, 0);
window.resizeTo(screen.availWidth, screen.availHeight);
*/

/*
	spamFreeEmail function - general information
	 - This function makes sure that the email is not filtered by any spider or bot and later indexed in a database to spam with sh**.
	 
	 Variables:
	 fullName = Your full name.
	 user = You as a user at...
	 domain = ..a certan domain.
	 
	 Why?
	 This is what the output will look like:
	 YourFullName <user@domain>
	 Exampel:
	 John Doe <john.doe@company.com>
*/
function spamFreeEmail(fullName, user, domain) {
	locationString = "mailto: " + fullName + " <" + user + "@" + domain + ">?subject=Hello\n";
	window.location = locationString;
}