function openbox(qry) {
	window.open('http://coloredink.com/login.php?' + qry,'','height=500,width=500');
	/*
if (document.getElementById("loginbox").style.display == 'none')
    {
document.getElementById("loginbox").style.display = 'block';
document.getElementById("loginbox").innerHTML = '<form action = "login.php" method = "post">Enter your email address<br/><input type="text" name = "username"><br/>Enter your password<br/><input type="password" name = "password"><br/><input type="submit" name="submit" value="Log In"></form>';
    }
else
   {
document.getElementById("loginbox").style.display = 'none' ; 
   }
   */
}

function openWin(itemid){
window.open('http://coloredink.com/mail.php?II=' + itemid,'','height=450,width=400');
}

function sendsearch(){
var qry = document.getElementById("query").value;
window.location = "http://coloredink.com/search.php?qry=" + qry;
}