/*
SCRIPT NAME:	URL-Redirect.js
AUTOR:		Pandemonium
COPYRIGHT:	© 2008 by Pandemonium
---------------------------------------------------------------------------
THIS SCRIPT WAS WRITTEN BY PANDEMONIUM FOR
CUSTOM-PSP.COM IN SPRING 2008. MODIFICATION
CONDITIONALLY! THIS IS A SIMPLE URL-REDIRECT
SCRIPT TO LINK BACK TO SOME OLD CONTENT FROM
THE NEW WORDPRESS NEWS SOFTWARE
*/


// This function simply redirects the window-url to the Custom-PSP Forum Index
function URLredirect_Forum() {
	window.location.href="http://custom-psp.com/Forum/index.php";
}


// This function simply redirects the window-url to the Tutorial-Area inside the Forum
function URLredirect_Tutorials() {
	window.location.href="http://custom-psp.com/Forum/viewforum.php?f=4";
}


// This function simply redirects the window-url to the Forum FAQ Page
function URLredirect_FAQ() {
	window.location.href="http://custom-psp.com/Forum/faq.php";
}


// This function simply redirects the window-url to the Forum Contact-Page
function URLredirect_Contact() {
	window.location.href="http://custom-psp.com/Forum/kontakt.php";
}


// This function simply redirects the window-url to the Forum FileUpload-Page
function URLredirect_Uploads() {
	window.location.href="http://custom-psp.com/Forum/dload.php?action=user_upload";
}


// This function simply redirects the window-url to the Forum Download-Page
function URLredirect_Downloads() {
	window.location.href="http://custom-psp.com/Forum/dload.php";
}