function replayGame() {
  window.location.href = 'form.aspx';
}

function newwindow2(theURL,winName,targetName,features){
	eval(winName+"=window.open('"+theURL+"','"+targetName+"','"+features+"')")
}

function openSearch() {
    var _width = 500;
    var _height = 380;
    newwindow2('search.aspx', 'newWin', 'newWin', 'width=' + _width +', height=' + _height +',scrollbars=0,left=' + (screen.width - _width)/2 +',top=' +(screen.height - _height)/2);
}

function openStoreList() {
    var _width = 400;
    var _height = 500;
    newwindow2('Store.aspx', 'newWin', 'newWin', 'width=' + _width + ', height=' + _height + ',scrollbars=0,left=' + (screen.width - _width) / 2 + ',top=' + (screen.height - _height) / 2);
}

function closeGame() {
  window.location.href = 'Default.aspx';
}

function printGame() {
    window.print();
}

function printSearch() {
    window.print();
}

function closeSearch() {
    window.close();
}