//		SCREENSHOTS script for sheet music portfolio page

description = new Array(
'<strong>A Golden Summer Day</strong><br />Trumpet and piano<br /><br />This piece was composed originally for cornet and piano, for a national band solo event. It has since been included in the VCE syllabus and has been performed many times.<br /><br />The work is published by <a href="http://www.reedmusic.com">Reed Music</a>',
'<strong>Vanguard</strong><br />Concert band<br /><br />This work was commissioned by Caulfield Grammar School to take on their overseas tour. It is a concert opener, and a strong crowd favourite. For moderately advanced bands.',
'<strong>Funkathon</strong><br />Big band<br /><br />Written for the Daryl MacKenzie Jazz Orchestra. This chart has been performed by James Morrison, and has even been played using a DJ turntable. For advanced big bands.<br /><br />Distributed by <a href="http://www.futuremusic.com.au">Future Music</a>',
'<strong>I\'ve never been in love before</strong><br />Big band<br /><br />Famous Frank Loesser standard, arranged for Margot Leighton and the EssTee Big Band.<br />Medium swing with a big finish, perfect for any jazz vocalist.',
'<strong>I\'ve never been in love before</strong><br />Alto sax part<br /><br />This page displays a typical extracted part from one of my charts, with easy to read presentation and layout.<br />I use Finale software Jazz font, just like Hal Leonard',
'<strong>This is my time</strong><br />Voice and piano<br /><br />An original song about chasing your dreams, applicable to many situations. Male or female vocal, with a fairly wide range.<br />A version with sampled orchestra can be heard on the <a href="portfolio_audio.html">audio portfolio page</a>',
'<strong>Young Prince of Tyre</strong><br />Baritone and piano<br /><br />Part of a project devised by Melbourne University, in which the poems of Ern Malley were set to music by various composers.<br />This work is quite tonal and not too hard to sing.',
'<strong>Three portraits</strong><br />Brass quintet<br /><br />Composed for the Victorian Musica Viva group Shrewd Brass, for use in their educational tours and concerts. Each movement is a portrait of my kids.<br />I have four now, so I\'d better write another portrait.',
'<strong>The end of all journeys</strong><br />Orchestra<br /><br />Commissioned by Symphony Australia for the Melbourne Symphony Orchestra, premiered in 2002.<br />A large scale work with plenty of fireworks for everybody, aimed at professional musicians');

function screenshot(pic,text,position){
box = document.getElementById('screenshot_container');
box.style.display = 'block';
document.getElementById('screenshot_text').innerHTML = description[text];
document.images.screenshot_image.src = pic;
	if(position == 'landscape'){
		box.style.left = '0px';
		box.style.width = '960px';
		box.style.height = '699px';
	} else if(position == 'portrait'){
		box.style.left = '140px';
		box.style.width = '677px';
		box.style.height = '980px';
	}
}

function close_screenshot(){
document.getElementById('screenshot_container').style.display = 'none';
}
