Possible Duplicate:
Why split the <script> tag when writing it with document.write()?
I have frequently seen the following statement:
document.write("<scr");
document.write("ipt language=\"Javascript\" type=\"text/javascript\" src=\"source url\"></scr");
document.write("ipt>");
What is the advantage of this? Why don't people write the whole script, as below?
document.write("<script ");