﻿var isPresentation = false;

function copySource(ID){
	window.clipboardData.setData('Text', document.getElementById(ID).innerHTML);
}

function showSource(ID) {
	//default Values
	width = '650px';
	height = '500px';
	rows = '20';
	cols = '70';
	cssClass = '';
	
	if(isPresentation){
		width = '900px';
		height = '700px';
		cssClass= 'source';
	}
	
	winBS='toolbar=no,location=no,directories=no,menubar=no,';
	winBS+='scrollbars=no,width='+ width +',height='+ height;
	myWindow=window.open("","",winBS); 
	myWindow.document.open();
	myWindow.document.write("<scr"+"ipt>function copy(){stuff.focus();stuff.select();window.clipboardData.setData('Text', stuff.value);}</scr"+"ipt>");
	myWindow.document.write("<link rel='Stylesheet' href='../styles/reset.css' />");
	myWindow.document.write("<input type=button value=copy onclick=copy();><BR>");
	myWindow.document.writeln ("<textarea id=stuff style='height:90%;' class='"+ cssClass +"'>");
	myWindow.document.write (document.getElementById(ID).innerHTML);
	myWindow.document.writeln ("</textarea>");
	myWindow.document.close();
	myWindow.focus() ;
}
