﻿
setInterval('blinkIt()', 500)

function blinkIt() {
    if (!document.all) return;
    else {
        for (i = 0; i < document.all.tags('blink').length; i++) {
            s = document.all.tags('blink')[i];
            s.style.visibility = (s.style.visibility == 'visible') ? 'hidden' : 'visible';
        }
    }
}

function PopUpWindow(URL, W, H) {
    window.open(URL, 'newpage', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,status=0,resizable=1,width=' + W + ',height=' + H);
}

function popupHisse(hisse_adi) {
    var hisseAdiFormatted = hisse_adi.toUpperCase();
    var url = '/Hisse/' + hisseAdiFormatted;
    popup_sizeable(url, 'sabah_hisse', 760, 600);
    return false;
}

function popup_sizeable(url, window_name, width, height) {
    var left = parseInt((screen.width - width) / 2);
    var top = parseInt((screen.height - height) / 2);

    var wnd = window.open(url,
		window_name,
		'status=1, toolbar=0, menubar=0, scrollbars=yes, resizable=1, ' +
		'left=' + left + ', top=' + top + ', ' +
		'width=' + width + ', height=' + height);

    wnd.focus();
    return wnd;
}
