﻿function showrules()
{
    jQuery.get('contest-rules.htm',
                { rand: Math.random() },
                                    function(response)
                                    {
                                        var res = response;
                                        var contest_rules = jQuery(res).find('#popupContainer');
                                        
                                        jQuery(contest_rules.html()).dialog({ modal: true, 
                                                                position: "center",
                                                                height:630,
                                                                width:800,
                                                                overlay: { opacity: 0.1, 
                                                                background: "black" 
                                                                } 
                                                            });
                                        
                                    }
                );
}

function showlots()
{
    var win = window.open("lots.htm","product","width=910,height=1400,left=50,top=50,scrollbars=yes");
}