﻿// JScript File

function openwin(a,w,h){

		x=(screen.width-w)/2;
		y=(screen.height-h)/2;

		temp=window.open(a,"_blank","width="+w+",height="+h+",left="+x+",top="+y+",addressbar=no,scrollbars=yes,menubar=no,toolbars=no,resizable=yes");

	}


	function search_popup(a,w,h){

		x=(screen.width-w)/2;
		y=(screen.height-h)/2;

		temp=window.open("StockSearch.aspx?query="+a,"_blank","width="+w+",height="+h+",left="+x+",top="+y+",addressbar=no,scrollbars=yes,menubar=no,toolbars=no,resizable=yes");

	}
	
	



