21 lines
796 B
JavaScript
21 lines
796 B
JavaScript
// (C) Copyright IBM Corporation, 2002, 2004
|
|
// All rights reserved. Licensed Materials Property of IBM
|
|
// US Government Users Restricted Rights
|
|
// Use, duplication or disclosure restricted by
|
|
// GSA ADP Schedule Contract with IBM Corp.
|
|
|
|
// rzahgcss.js
|
|
// This file selects the appropriate interface CSS for the file
|
|
|
|
//START NON-TRANSLATABLE
|
|
document.write('<link rel=\"stylesheet\" href=\"iccssbase.css\" type=\"text/css\" >');
|
|
if (top.isNS){
|
|
document.write('<link rel=\"stylesheet\" href=\"iccssns.css\" type=\"text/css\" >');
|
|
document.close();
|
|
}else if (top.isIE){
|
|
document.write('<link rel=\"stylesheet\" href=\"iccssie.css\" type=\"text/css\" >');
|
|
}else if (top.isOP7){
|
|
document.write('<link rel=\"stylesheet\" href=\"iccssie.css\" type=\"text/css\" >');
|
|
}
|
|
//END NON-TRANSLATABLE
|