﻿// JScript File

function displayPopUp(storeId) {
    myWin = window.open('', 'myWin', 'left=200px,top=60px,height=360px,width=760px');
    myWin.document.write('<link rel="stylesheet" type="text/css" href="stewarts.css" media="all" />');
    myWin.document.write($('#' + storeId).html());
    myWin.document.close();
    myWin.focus();
}
