﻿// JScript File
var strWinProp;

var intWidth;
var intHeight;
intWidth = screen.width - 10;
intHeight = screen.height - 80;
strWinProp = " toolbar=no"
			+ ",location=no"
			+ ",directories=no"
			+ ",status=yes"
			+ ",menubar=no"
			+ ",resizable=yes"
			+ ",scrollbars=yes"
			+ ",titlebar=yes"
			+ ",width=" + intWidth
			+ ",height=" + intHeight
			+ ",top=0"
			+ ",left=0"
			+ "";


function showPopupDetail(page) {
    var width = 410;
    var height = 200;
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;

    window.open(page, 'contactdetails', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,scrollbars=no,titlebar=yes,width=' + width + ',height=' + height + ',top=' + top + ',left=' + left);
}
