
/* Div to disable background */
#backgroundFilter
{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    filter: alpha(opacity=60);
    opacity: 0.5;
    display: none;
    z-index: 1000;
    width: 100%;
    height: 100%;
}
/* POPUP WINDOW */
#popupWindow
{
	display: none;
	width:700px;
	height: 556px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -350px;
    margin-top: -300px;
    border: 1px solid black;
    background-color: #FFFFFF;
    z-index: 1005;
}

#topRight
{
	width:700px;
    float:right;
}
