/* $Change: 2021583 $ $DateTime: 2007/09/07 09:32:12 $ $Revision: #9 $ */

function helpPopUp(theURL) {
   var newWin=open(theURL,"help","width=425,height=450,scrollbars=1,menubar=0,toolbar=0,resizable=1,left=100,top=100,screenX=100,screenY=100");
}

function writeURL() {
	var currentURL = document.URL;
	var index;
	var showAnchorURL;
	if (currentURL.indexOf("?topic=") != -1)	{
		index = currentURL.indexOf("?topic=") + 7;
		showAnchorURL = currentURL.substring(index, currentURL.length);
	}
	window.frames.middle.document.location.replace('content_help.htm#' + showAnchorURL);
}


function presPopUp(theURL) {
   var newWin=open(theURL,"help",",,scrollbars=1,menubar=0,toolbar=0,resizable=1,left=100,top=100,screenX=100,screenY=100");
}

function imagePopUp(theImage,theText) {
	var newWin=open("","largeImage","width=590,height=430,scrollbars=yes,menubar=no,toolbar=no,resizable=yes,left=50,top=50,screenX=50,screenY=50");
	newWin.document.writeln("<html>");
	newWin.document.writeln('<head><title>National Instruments</title><link rel=stylesheet type="text/css" href="/css/global/us/main.css"></head><body>');
	
	newWin.document.writeln("<table cellpadding=0 cellspacing=0 border=0 width=100% align=center height=100%>");
	newWin.document.write('<tr><td><span class="title2">');
	newWin.document.write(theText);
	newWin.document.writeln('</span></td></tr>');
	newWin.document.writeln('<tr><td><img src="/images/global/us/invis.gif" width=1 height=5 border=0></td></tr>');
	newWin.document.write('<tr valign=top><td align=center><img src="');
	newWin.document.write(theImage);
	newWin.document.writeln('"></td></tr>');
	newWin.document.writeln('<tr><td><img src="/images/global/us/invis.gif" width=1 height=10 border=0></td></tr>');
	newWin.document.writeln('<tr valign="bottom"><td align=center><a href="javascript:self.close();"><img src="/images/buttons/us/close.gif" border="0" alt=""></a></td></tr>');
	newWin.document.writeln("</table>");
	
	newWin.document.writeln("</body></html>");
	newWin.document.close;
}

function yetAnotherPopUp(theURL,width,height) {
   var newWin=open(theURL,"help","width=" + width + ",height=" + height + ",scrollbars=1,menubar=0,toolbar=0,resizable=1,left=100,top=100,screenX=100,screenY=100");
}
