var message="Copyright 2008-09, Bengalnet Comunications. All rights reserved.";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

function open_conditions() 
{
new_window = open("","hoverwindow","width=380,height=210,left=200,top=200");

new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title>Dhadha Contest Conditions</title>");
new_window.document.write("<body bgcolor=\"#790000\">");
new_window.document.write("<font color=\"#ffffff\">");
new_window.document.write("<font size=\"3\">");
new_window.document.write("1. First highest right answer of the Month will be awarded.");
new_window.document.write("<br>");
new_window.document.write("<br>");
new_window.document.write("2. If any one gives more than one answer against the same question, only the first answer will be acceptable.");
new_window.document.write("<br>");
new_window.document.write("<br>");
new_window.document.write("3. Decision of the authority is final. No personal commence will be entertained.");
new_window.document.write("<br>");
new_window.document.write("<br>");
new_window.document.write("4. Any person connected with Bengalnet Communications can’t participate at this contest.");

new_window.document.write("<br>");
new_window.document.write("</body></html>");

new_window.document.close(); 
}

function close_window() 
{
new_window.close();
}