function change_showcase( client, project, image, vLink )
{
	var clientContent = document.getElementById( "clientChange" ).innerHTML = client ;
	var projectContent = document.getElementById( "projectChange" ).innerHTML = project ;
	var screenShot = document.getElementById( "screenShotImg" ).src = image ;		
	
	if( vLink != "" )
	{
		var pdfLink = document.getElementById( "viewPDF" ).innerHTML = "<img src='images/arrow-dots.gif'>&nbsp;&nbsp;&nbsp;<a href='javascript:display_pdf( \""+vLink+"\" ) ;'>View PDF</a>	" ;
	}
	else
	{
		var pdfLink = document.getElementById( "viewPDF" ).innerHTML = "" ;
	}
}

function change_showcase2( client, project, image, vLink )
{
	var clientContent = document.getElementById( "clientChange" ).innerHTML = client ;
	var projectContent = document.getElementById( "projectChange" ).innerHTML = project ;
	var screenShot = document.getElementById( "screenShotImg" ).src = image ;		
	
	if( vLink != "" )
	{
		var pdfLink = document.getElementById( "viewPDF" ).innerHTML = "<img src='images/arrow-dots.gif'>&nbsp;&nbsp;&nbsp;<a href='javascript:goto_page( \""+vLink+"\" ) ;'>Visit Site</a>	" ;
	}
	else
	{
		var pdfLink = document.getElementById( "viewPDF" ).innerHTML = "" ;
	}
}

function change_showcase3( client, project, image, vLink )
{
	var clientContent = document.getElementById( "clientChange" ).innerHTML = client ;
	var projectContent = document.getElementById( "projectChange" ).innerHTML = project ;
	var screenShot = document.getElementById( "screenShotImg" ).src = image ;		
	
	if( vLink != "" )
	{
		var pdfLink = document.getElementById( "viewPDF" ).innerHTML = "<img src='images/arrow-dots.gif'>&nbsp;&nbsp;&nbsp;<a href='javascript:goto_flash( \""+vLink+"\" ) ;'>View Flash</a>	" ;
	}
	else
	{
		var pdfLink = document.getElementById( "viewPDF" ).innerHTML = "" ;
	}
}

function goto_page( hLink )
{
	window.open(hLink,'mywindow','width=1024,height=768,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes' ) ;
}

function goto_flash( hLink )
{
	window.open(hLink,'mywindow','width=800,height=380,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes' ) ;
}


function display_pdf( pdf )
{		
	window.open("http://www.mad-cow-design.com/"+pdf,'mywindow','width=800,height=650,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes' ) ;		
}
