 // *****************************  POPUP EKRANI **********************
function ShowStockDetail() {
	var C_Code = document.AllStocks.StockCode.options[document.AllStocks.StockCode.selectedIndex].value
	self.name = "imkb";
	var winl = (screen.width - 700) / 2;
	var wint = (screen.height - 460) / 2;
	var ourl='/scr/StockDetail.asp?Code=' + C_Code
  popupWin = window.open( ourl,'StockDetail', 'top=' + wint + ',left=' + winl + ',width=700, height=460, scrollbars=yes, status=yes')
}