﻿function go()
{
	var a = window.open('','','scrollbars=yes,width=740,height=300,');
	a.document.open("text/html");
	a.document.write('<html><head><link rel="stylesheet" href="../css/writerp.css" />');
	a.document.write(document.getElementById('specs').innerHTML);
	a.document.write('</body></html>');
	a.document.close();
	a.print();
}

function copyToClipboard()
{
var div = document.getElementById('specs');
div.contentEditable = 'true';
var controlRange;
if (document.body.createControlRange) {
controlRange = document.body.createControlRange();
controlRange.addElement(div);
controlRange.execCommand('Copy');
}
div.contentEditable = 'false';}

function show_alert()
{ 
var msg = "Section 08360 has been copied to your clipboard.";
alert(msg); 
}
