// JavaScript Document
function popWindow(page,content) {
pop_label = window.open(page + "?" + content, "pop_label", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width=600,height=554,left=0,top=0")
pop_label.focus();
}
function popWindowHome(page,content) {
pop_label = window.open(page + "?" + content, "pop_label", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width=600,height=580,left=0,top=0")
pop_label.focus();
}
function popWindowEdit(page,content) {
pop_label = window.open(page + "?" + content, "pop_label", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=790,height=600,left=0,top=0")
pop_label.focus();
}
function closeandfocus() {
if (window.opener && !window.opener.closed) {
window.opener.focus();
//var URL = unescape('/clearimage/labels/index.php');
//window.opener.location.href(URL);
window.opener.location.href('../labels/index.php');
self.close();

}
else
{
window.open ("../labels/index.php","Main");
parent.close();
}
}
function CMAcloseandfocus(target) {
if (window.opener && !window.opener.closed) {
window.opener.focus();
window.opener.location.href(target);
self.close();
}
else
{
 window.open ("../labels/viewlabels.php","Main");
 parent.close();
}
}
function closeWindow() {
window.close();
}
function IsEmpty(aTextField) {
if ((aTextField.value.length==0) ||
(aTextField.value==null)) {
alert ("Please give your article a title."); 
return false;
}
else { return true; }
} 
