function pop(headername){

	var _page = "<html><head>"+
		"<link href=\"/App_Themes/Minco2/02_layout.css\" type=\"text/css\" rel=\"stylesheet\" />"+
		"<link href=\"/App_Themes/Minco2/03_styles.css\" type=\"text/css\" rel=\"stylesheet\" />"+
		"<link href=\"/App_Themes/Minco2/xx_orderadmin.css\" type=\"text/css\" rel=\"stylesheet\" />";

	switch(headername){
		case 'leadnum':
		case 'leadnumX7':
			_page += "<title>Number of Leads</title></head><body>"+
				"<table cellpadding=0 cellspacing=0>"+
				"	<tr>"+
				"		<td class=orderHead><b>Number of Leads:</b></td>"+
				"	</tr>"+
				"	<tr><td class=orderSubHead align=left>Y = 2 leads</td></tr>"+
				"	<tr><td class=orderSubHead align=left>Z = 3 leads</td></tr>"+
				"	<tr><td class=orderSubHead align=left>X = 4 leads</td></tr>"+
				"</table>";
			break;
	}
	
	_page += "</body></html>";
	
	newWindow = window.open("", "newWin", "width=200,height=150,toolbar=0,resizable=1,scrollbars=0");
	newWindow.document.write( _page );
	
	newWindow.document.close();	
}

function getQuote(quote){

	var _page = "<html><head>"+
		"<link href=\"/App_Themes/Minco2/02_layout.css\" type=\"text/css\" rel=\"stylesheet\" />"+
		"<link href=\"/App_Themes/Minco2/03_styles.css\" type=\"text/css\" rel=\"stylesheet\" />";

			_page += "<title>Q-Copy</title></head><body>"+
				"<table cellpadding=0 cellspacing=0>"+
				//"	<tr>"+
				//"		<td><b>Quote:</b></td>"+
				//"	</tr>"+
				"	<tr>"+
				"		<td>" + quote + "</td>"+
				"	</tr>"+
				"</table>";
	
	_page += "</body></html>";
	
	newWindow = window.open("", "newWin", "width=600,height=100,toolbar=0,resizable=1,scrollbars=0");
	newWindow.document.write( _page );
	
	newWindow.document.close();	
}

function newWinTR(){
	helpWindow = window.open("/sensor-configurator/temprange.aspx", "prodpic", "width=800,height=300,toolbar=0,resizable=1,scrollbars=1");	
}
function newWindow(page){
	helpWindow = window.open(page, "prodpic", "width=300,height=200,toolbar=0,resizable=1,scrollbars=1");	
}
function newWindow02(page){
	helpWindow = window.open(page, "prodpic", "width=600,height=300,toolbar=0,resizable=1,scrollbars=0");	
}
function newWindowFeedback(){
	helpWindow = window.open("/sensor-configurator/sc_feedback.aspx", "prodpic", "width=400,height=350,toolbar=0,resizable=1,scrollbars=0");	
}
function CopyQuote(elemName){
	var obj = document.getElementById(elemName);
	window.clipboardData.setData("Text", obj.innerText);
	alert("The quote has been copied to your clipboard");
}
