



//----------------------------------------------------------------------------------------------
// A Function to create a new secondary browser window that will hold content.
// The function takes two arguments: the name of the file and the features of the new window 
// (such as height, width).
// The name of the file is passed to the function when we call it, so that this function can be 
// used for any number of different popups.
// The document.write method is used to create the dynamic content of our new window object
//----------------------------------------------------------------------------------------------



function tuesdays(file, features) { 

	var content = "<html><head><title>Popup</title></head>" + "<body><left><form><h2>Tuesdays</h2><p>The Preservation Jazz Society present good-time jazz and swing in the traditional styles of the 20's and 30's in a friendly cafe bar atmosphere.</p><p>Find out more at <a href='http://website.lineone.net/~pjscardiff/' target='_new'>The Preservation Jazz Society</a><p><strong>Admission is normally £3.00 (£2.50)</p><input type='button' value='Close this Window'" 
	+ "onClick='window.close()'></form>" + "</left>"+ "</body></html>";
	var pop = window.open("","",features);
	pop.document.open();
	if (window.focus) {                                                        
		pop.focus()
	};
	pop.document.write(content);
	pop.document.close();
} 


function fridays(file, features) { 

	var content = "<html><head><title>Popup</title></head>" + "<body><left><form><h2>Fridays</h2><p>Powerful, provocative, sometimes petulant - Late night blues sessions presented by Bluesdragon every Friday night at CafeJAZZ.</p><p>Find out more at <a href='http://www.bluesdragon.org.uk' target='_new'>www.bluesdragon.org.uk</a><p><strong>Admission is normally £4.00 and music starts at 10pm.</p><input type='button' value='Close this Window'" 
	+ "onClick='window.close()'></form>" + "</left>"+ "</body></html>";
	var pop = window.open("","",features);
	pop.document.open();
	if (window.focus) {
		pop.focus()
	};
	pop.document.write(content);
	pop.document.close();
} 


function Popup(file, features) { 

	var content = "<html><head><title>Popup</title></head>" + "<body><left><form><h2>Mondays</h2><p>This weekly session has been home to many of South Wales's finest musicians and enthusiastic amateurs for over fifteen years.<br></br>Jazz Attic offers the chance for all budding musicians to 'sit in' with the talented house trio. All instruments and singers are welcome. Jools Holland clones are banned. Anyone that arrives early enough is given the chance to play.</p><p><strong>Admission is still only £2.00</p><input type='button' value='Close this Window'" 
	+ "onClick='window.close()'></form>" + "</left>"+ "</body></html>";
	var pop = window.open("","",features);
	pop.document.open();
	if (window.focus) {
		pop.focus()
	};
	pop.document.write(content);
	pop.document.close();
} 





