/******************************************************************************
 *
 * Copyright (c) Enigma Interactive 2003
 * 7-15 pink lane / newcastle / ne1 5dw / england
 * t: +44 (0)191 261 2991 www.enigma-interactive.co.uk f: +44 (0)191 261 2378
 *
 * Filename: 	viewcd.js
 * Description:	A set of function for use on the view cd page
 *
 *
 * History
 * ver	date		who			comment
 * ----------------------------------------------------------------------------
 * 1 	17-Aug-2004	Chris Gair	Created
 *****************************************************************************/


/*******************************************************************************
 * Description:	Opens the related cd for viewing
 * Parameters:	cdtoview - id of the cd to open
 *
 * History
 * ver	date		who					comment
 *------------------------------------------------------------------------------
 * 1	17-Aug-2004	Chris Gair			Created
 ******************************************************************************/
function OpenRelated(cdtoview)
	{
	document.viewcd.action = "viewcd.cfm?view=" + cdtoview;
	document.viewcd.submit();
	wait();
	}
 // end of function OpenRelated 
 
/*******************************************************************************
 * Description:	Jumps to the track that was selected
 * Parameters:	
 *
 * History
 * ver	date		who					comment
 *------------------------------------------------------------------------------
 * 1	24-Aug-2004	Chris Gair			Created
 ******************************************************************************/
function JumpToTrack(p_intTrackId)
	{
	if (p_intTrackId > 0){
		document.location.href='##TM' + p_intTrackId;
		}
	}
 // end of function JumpToTrack
 