$(document).ready(function() {
    $(document).keyup(function(e) {
        e = e || window.event;
        var keyCode = e.keyCode || e.which;
        if (keyCode == 27) {
            CloseOverlay();
}});});
function OpenOverlay(me, pID, imName){
	$("#olBackDrop").css("visibility", "visible");
	$.ajax({
	    url: "js/controls/productimage.aspx?id=" + pID + "&im=" + imName,
	    cache: false,
	    success: function(html) {
	        $("#olImageH").append(html);
	        setTimeout(function() {if ($(".olImage").width() > 800) { $(".olImage").width(800); }
	        if ($(".olImage").width() == "0" || $(".olImage").width() == 0 || $(".olImage").width() < 200) {
                $(".olImage").css("margin-left", "-400");
	            $(".olImage").css("margin-top", "-300");
	        } else {
	            $(".olImage").css("margin-left", ($(".olImage").width() / 2) * -1);
	            $(".olImage").css("margin-top", ($(".olImage").height() / 2) * -1);
	        }	
	        $("#olImageH").css("visibility", "visible"); }, 1000);
	}});
	return true;}
function CloseOverlay(){
	$("#olBackDrop").css("visibility", "hidden");
	$("#olImageH").css("visibility", "hidden");
	$("#olImageH img").remove(":last");}
